3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #76856 from anmonteiro/patch-2

ocaml rresult: Add the `result` compatibility package as a build input
This commit is contained in:
Mario Rodas 2020-01-08 06:18:03 -05:00 committed by GitHub
commit 86e82f9d9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-rresult-${version}";
@ -10,6 +10,8 @@ stdenv.mkDerivation rec {
buildInputs = [ ocaml findlib ocamlbuild topkg ];
propagatedBuildInputs = [ result ];
inherit (topkg) buildPhase installPhase;
meta = {