ocamlPackages.asn1-combinators: remove spurious dependency to Camlp4
This commit is contained in:
parent
562a264be4
commit
bbf96f8652
1 changed files with 5 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib
|
||||
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild
|
||||
, cstruct, zarith, ounit, result, topkg, ptime
|
||||
}:
|
||||
|
||||
|
@ -10,16 +10,14 @@ let param =
|
|||
} else {
|
||||
version = "0.1.3";
|
||||
sha256 = "0hpn049i46sdnv2i6m7r6m6ch0jz8argybh71wykbvcqdby08zxj";
|
||||
propagatedBuildInputs = [ ];
|
||||
propagatedBuildInputs = [ ];
|
||||
};
|
||||
in
|
||||
|
||||
buildOcaml rec {
|
||||
name = "asn1-combinators";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-asn1-combinators-${version}";
|
||||
inherit (param) version;
|
||||
|
||||
minimumSupportedOcamlVersion = "4.01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mirleft";
|
||||
repo = "ocaml-asn1-combinators";
|
||||
|
@ -27,7 +25,7 @@ buildOcaml rec {
|
|||
inherit (param) sha256;
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ounit topkg ];
|
||||
buildInputs = [ ocaml findlib ocamlbuild ounit topkg ];
|
||||
propagatedBuildInputs = [ result cstruct zarith ] ++ param.propagatedBuildInputs;
|
||||
|
||||
buildPhase = "${topkg.run} build --tests true";
|
||||
|
|
Loading…
Reference in a new issue