We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 2b2a678 commit 25ee251Copy full SHA for 25ee251
pkgs/development/haskell-modules/generic-builder.nix
@@ -191,7 +191,7 @@ assert allPkgconfigDepends != [] -> pkgconfig != null;
191
stdenv.mkDerivation ({
192
name = "${pname}-${version}";
193
194
- outputs = if (args ? outputs) then args.outputs else ([ "out" ] ++ (optional enableSeparateDataOutput "data") ++ (optional enableSeparateDocOutput "doc"));
+ outputs = [ "out" ] ++ (optional enableSeparateDataOutput "data") ++ (optional enableSeparateDocOutput "doc");
195
setOutputFlags = false;
196
197
pos = builtins.unsafeGetAttrPos "pname" args;
0 commit comments