pkgStatics.ocaml-ng: fix eval when there are no buildInputs
This commit is contained in:
parent
81d185ad5d
commit
c47609456e
@ -51,7 +51,7 @@ self: super: let
|
||||
b.overrideAttrs (o: {
|
||||
configurePlatforms = [ ];
|
||||
dontAddStaticConfigureFlags = true;
|
||||
buildInputs = o.buildInputs ++ o.nativeBuildInputs or [ ];
|
||||
buildInputs = (o.buildInputs or [ ]) ++ o.nativeBuildInputs or [ ];
|
||||
propagatedNativeBuildInputs = o.propagatedBuildInputs or [ ];
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user