nixpkgs/pkgs/development/libraries/pixman/default.nix
Alyssa Ross b6a5fe2963
pkgsStatic.pixman: fix build
We can only separate debug info from dynamic libraries and
executables, and a static build of pixman doesn't produce either, and
that means the debug output won't be created and the build would fail.
2021-11-11 14:22:00 +00:00

31 lines
745 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libpng, glib /*just passthru*/ }:
stdenv.mkDerivation rec {
pname = "pixman";
version = "0.38.4";
src = fetchurl {
url = "mirror://xorg/individual/lib/${pname}-${version}.tar.bz2";
sha256 = "0l0m48lnmdlmnaxn2021qi5cj366d9fzfjxkqgcj9bs14pxbgaw4";
};
separateDebugInfo = !stdenv.hostPlatform.isStatic;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libpng ];
configureFlags = lib.optional stdenv.isAarch32 "--disable-arm-iwmmxt";
doCheck = true;
postInstall = glib.flattenInclude;
meta = with lib; {
homepage = "http://pixman.org";
description = "A low-level library for pixel manipulation";
license = licenses.mit;
platforms = platforms.all;
};
}