ocamlPackages.janePackage: don't delete meta set in args

A bit of a pitfall of // is that it doesn't merge recursively which
often leads to unintended deletion in meta sets: If meta is in args it
is also present in the set right of the // operator which means the
right value is used to replace the left value completely. This throws
away anything extra we've set in the meta set in args.

This is fixed by this comment, allowing the descriptions and broken =
true; set in janestreet/old.nix to propagate to the output meta sets.
This commit is contained in:
sternenseemann 2021-02-19 14:11:24 +01:00 committed by Vincent Laporte
parent 462d059909
commit 336ac16838
3 changed files with 12 additions and 6 deletions

View file

@ -14,6 +14,8 @@ buildDunePackage (args // {
sha256 = hash;
};
meta.license = lib.licenses.asl20;
meta.homepage = "https://github.com/janestreet/${pname}";
meta = {
license = lib.licenses.asl20;
homepage = "https://github.com/janestreet/${pname}";
} // args.meta;
})

View file

@ -14,6 +14,8 @@ buildDunePackage (args // {
sha256 = hash;
};
meta.license = lib.licenses.mit;
meta.homepage = "https://github.com/janestreet/${pname}";
meta = {
license = lib.licenses.mit;
homepage = "https://github.com/janestreet/${pname}";
} // args.meta;
})

View file

@ -22,6 +22,8 @@ buildDunePackage (args // {
inherit doCheck;
meta.license = lib.licenses.mit;
meta.homepage = "https://github.com/janestreet/${pname}";
meta = {
license = lib.licenses.mit;
homepage = "https://github.com/janestreet/${pname}";
} // args.meta;
})