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.
This commit is contained in:
parent
d3f2137f5c
commit
b6a5fe2963
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0l0m48lnmdlmnaxn2021qi5cj366d9fzfjxkqgcj9bs14pxbgaw4";
|
sha256 = "0l0m48lnmdlmnaxn2021qi5cj366d9fzfjxkqgcj9bs14pxbgaw4";
|
||||||
};
|
};
|
||||||
|
|
||||||
separateDebugInfo = true;
|
separateDebugInfo = !stdenv.hostPlatform.isStatic;
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue