pugixml: simplify outputs

This commit is contained in:
Sandro Jäckel 2022-08-18 23:07:40 +02:00
parent 116a0c1893
commit 05766cd33c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

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