Merge pull request #187349 from SuperSandro2000/pugixml

pugixml: simplify outputs
This commit is contained in:
Sebastián Mancilla 2022-08-18 19:00:12 -04:00 committed by GitHub
commit 7e13b382dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];