ocamlPackages.ppxfind: do not strip with OCaml 4.04
This commit is contained in:
parent
ff6c982e5e
commit
4759568c6b
@ -1,6 +1,6 @@
|
|||||||
{ lib, buildDunePackage, fetchurl, ocaml-migrate-parsetree }:
|
{ lib, buildDunePackage, fetchurl, ocaml, ocaml-migrate-parsetree }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage (rec {
|
||||||
pname = "ppxfind";
|
pname = "ppxfind";
|
||||||
version = "1.3";
|
version = "1.3";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -18,4 +18,8 @@ buildDunePackage rec {
|
|||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
maintainers = [ lib.maintainers.vbgl ];
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
};
|
};
|
||||||
}
|
} // (
|
||||||
|
if lib.versions.majorMinor ocaml.version == "4.04" then {
|
||||||
|
dontStrip = true;
|
||||||
|
} else {}
|
||||||
|
))
|
||||||
|
Loading…
Reference in New Issue
Block a user