mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 11:17:45 +00:00
pugixml: simplify outputs
This commit is contained in:
parent
116a0c1893
commit
05766cd33c
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-Udjx84mhLPJ1bU5WYDo73PAeeufS+vBLXZP0YbBvqLE=";
|
||||
};
|
||||
|
||||
outputs = if shared then [ "out" "dev" ] else [ "out" ];
|
||||
outputs = [ "out" ] ++ lib.optionals shared [ "dev" ];
|
||||
|
||||
nativeBuildInputs = [ cmake validatePkgConfig ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user