summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorAntonio Nuno Monteiro <anmonteiro@gmail.com>2020-01-02 19:29:37 -0800
committerGitHub <noreply@github.com>2020-01-02 19:29:37 -0800
commit69827da125275410b2c49e1e656b63183d6ade94 (patch)
tree7a632326382c09a3cbb0a4f2ee91fbbdd60385fa /pkgs/development/ocaml-modules
parent804678f9ea5222bb8a6c011639b0735ca9b8d64c (diff)
downloadnixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar.gz
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar.bz2
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar.lz
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar.xz
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.tar.zst
nixpkgs-69827da125275410b2c49e1e656b63183d6ade94.zip
ocaml rresult: Add the `result` compatibility package as a build input
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/rresult/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/rresult/default.nix b/pkgs/development/ocaml-modules/rresult/default.nix
index d40ce19a8fd..579d3da81e3 100644
--- a/pkgs/development/ocaml-modules/rresult/default.nix
+++ b/pkgs/development/ocaml-modules/rresult/default.nix
@@ -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 = {