summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/oasis
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-10-08 19:14:49 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-10-09 05:34:02 +0000
commit701316450cc044d5294add2ed25f876b7a891420 (patch)
treeec9868d41003ba1027dca0ca4b8eee755cee3ef3 /pkgs/development/tools/ocaml/oasis
parent2870979a5340060dab29db0d2a3ee7a3524f1fb1 (diff)
downloadnixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar.gz
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar.bz2
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar.lz
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar.xz
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.tar.zst
nixpkgs-701316450cc044d5294add2ed25f876b7a891420.zip
ocamlPackages.oasis: remove unneeded dependencies
Diffstat (limited to 'pkgs/development/tools/ocaml/oasis')
-rw-r--r--pkgs/development/tools/ocaml/oasis/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix
index 6ff5ee72666..2364058729e 100644
--- a/pkgs/development/tools/ocaml/oasis/default.nix
+++ b/pkgs/development/tools/ocaml/oasis/default.nix
@@ -1,6 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, camlp4
-, ocaml_data_notation, type_conv, ocamlmod, ocamlify, ounit, expect
-}:
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, ocamlmod, ocamlify }:
 
 stdenv.mkDerivation rec {
   version = "0.4.10";
@@ -17,11 +15,9 @@ stdenv.mkDerivation rec {
 
   buildInputs =
     [
-      ocaml findlib ocamlbuild type_conv ocamlmod ocamlify ounit camlp4
+      ocaml findlib ocamlbuild ocamlmod ocamlify
     ];
 
-  propagatedBuildInputs = [ ocaml_data_notation ];
-
   configurePhase = "ocaml setup.ml -configure --prefix $out";
   buildPhase     = "ocaml setup.ml -build";
   installPhase   = "ocaml setup.ml -install";