summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-19 11:38:29 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-19 11:38:29 +0000
commit203e3c52924aade143174ee26a762247fbf19a92 (patch)
tree170f59156ed0015030adbdf5838b239c3e621266 /pkgs/development
parenta452714799b36fae4c34e7167122d2b26ff07747 (diff)
downloadnixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar.gz
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar.bz2
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar.lz
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar.xz
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.tar.zst
nixpkgs-203e3c52924aade143174ee26a762247fbf19a92.zip
trv: fix the propagate build inputs
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/trv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/trv/default.nix b/pkgs/development/tools/misc/trv/default.nix
index e73d77f772d..c8747e66e39 100644
--- a/pkgs/development/tools/misc/trv/default.nix
+++ b/pkgs/development/tools/misc/trv/default.nix
@@ -1,6 +1,6 @@
 {stdenv, fetchFromGitHub, ocaml, findlib, camlp4, core_p4, async_p4, async_unix_p4
 , re2_p4, async_extra_p4, sexplib_p4, async_shell, core_extended_p4, async_find
-, cohttp, conduit, magic-mime, uri, tzdata
+, cohttp, conduit, magic-mime, tzdata
 }:
 
 assert stdenv.lib.versionOlder "4.02" ocaml.version;
@@ -17,10 +17,10 @@ stdenv.mkDerivation rec {
   };
 
 
-  buildInputs = [ ocaml findlib camlp4 conduit magic-mime ];
+  buildInputs = [ ocaml findlib camlp4 ];
   propagatedBuildInputs = [ core_p4 async_p4 async_unix_p4
                             async_extra_p4 sexplib_p4 async_shell core_extended_p4
-                            async_find cohttp uri re2_p4 ];
+                            async_find cohttp conduit magic-mime re2_p4 ];
 
   createFindlibDestdir = true;
   dontStrip = true;