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.

+1 -1
+1 -1
pkgs/development/libraries/pixman/default.nix
··· 9 sha256 = "0l0m48lnmdlmnaxn2021qi5cj366d9fzfjxkqgcj9bs14pxbgaw4"; 10 }; 11 12 - separateDebugInfo = true; 13 14 nativeBuildInputs = [ pkg-config ]; 15
··· 9 sha256 = "0l0m48lnmdlmnaxn2021qi5cj366d9fzfjxkqgcj9bs14pxbgaw4"; 10 }; 11 12 + separateDebugInfo = !stdenv.hostPlatform.isStatic; 13 14 nativeBuildInputs = [ pkg-config ]; 15