about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2017-05-11 11:02:57 +0200
committerProfpatsch <mail@profpatsch.de>2017-05-30 20:50:36 +0200
commit1cff0701ef8c2674c5c30462c7d6068345886700 (patch)
treea162a2a9d5d3c7545e173c77fd653bd8f2fc9610 /pkgs/development/ocaml-modules/janestreet
parent1dac99b7c96cd130847ca95adee146c3087154fd (diff)
downloadnixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar.gz
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar.bz2
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar.lz
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar.xz
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.tar.zst
nixlib-1cff0701ef8c2674c5c30462c7d6068345886700.zip
ocamlPackages: remove duplicated definitions
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ocaml-compiler-libs.nix21
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_ast.nix24
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_traverse_builtins.nix21
3 files changed, 0 insertions, 66 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ocaml-compiler-libs.nix b/pkgs/development/ocaml-modules/janestreet/ocaml-compiler-libs.nix
deleted file mode 100644
index 7d7e44ab9cc1..000000000000
--- a/pkgs/development/ocaml-modules/janestreet/ocaml-compiler-libs.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, fetchurl, ocaml, jbuilder, findlib }:
-
-stdenv.mkDerivation {
-	name = "ocaml${ocaml.version}-ocaml-compiler-libs-0.9.0"; 
-	src = fetchurl {
-		url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/ocaml-compiler-libs-v0.9.0.tar.gz;
-		sha256 = "0ipi56vg227924ahi9vv926jn16br9zfipm6a3xd4xrl5pxkvzaz";
-	};
-
-	buildInputs = [ ocaml jbuilder findlib ];
-
-	inherit (jbuilder) installPhase;
-
-	meta = {
-		description = "OCaml compiler libraries repackaged";
-		homepage = https://github.com/janestreet/ocaml-compiler-libs;
-		license = stdenv.lib.licenses.asl20;
-		maintainers = [ stdenv.lib.maintainers.vbgl ];
-		inherit (ocaml.meta) platforms;
-	};
-}
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_ast.nix b/pkgs/development/ocaml-modules/janestreet/ppx_ast.nix
deleted file mode 100644
index 33f1766cb4a6..000000000000
--- a/pkgs/development/ocaml-modules/janestreet/ppx_ast.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl, ocaml, jbuilder, findlib
-, ocaml-compiler-libs, ocaml-migrate-parsetree
-}:
-
-stdenv.mkDerivation {
-	name = "ocaml${ocaml.version}-ppx_ast-0.9.0";
-	src = fetchurl {
-		url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/ppx_ast-v0.9.0.tar.gz;
-		sha256 = "1hirfmxr8hkf3p39k1pqidabxxhd541d6ddfaqpgxbl51bw9ddmz";
-	};
-
-	buildInputs = [ ocaml jbuilder findlib ];
-	propagatedBuildInputs = [ ocaml-compiler-libs ocaml-migrate-parsetree ];
-
-	inherit (jbuilder) installPhase;
-
-	meta = {
-		description = "OCaml AST used by Jane Street ppx rewriters";
-		homepage = https://github.com/janestreet/ppx_ast;
-		license = stdenv.lib.licenses.asl20;
-		maintainers = [ stdenv.lib.maintainers.vbgl ];
-		inherit (ocaml.meta) platforms;
-	};
-}
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_traverse_builtins.nix b/pkgs/development/ocaml-modules/janestreet/ppx_traverse_builtins.nix
deleted file mode 100644
index d84983ed6348..000000000000
--- a/pkgs/development/ocaml-modules/janestreet/ppx_traverse_builtins.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, fetchurl, ocaml, jbuilder, findlib }:
-
-stdenv.mkDerivation {
-	name = "ocaml${ocaml.version}-ppx_traverse_builtins-0.9.0";
-	src = fetchurl {
-		url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/ppx_traverse_builtins-v0.9.0.tar.gz;
-		sha256 = "0zmf9kybll0xn8dsj10v260l0zwjyykimqml9rl7xqyjyl1rmnx6";
-	};
-
-	buildInputs = [ ocaml jbuilder findlib ];
-
-	inherit (jbuilder) installPhase;
-
-	meta = {
-		description = "Builtins for Ppx_traverse";
-		homepage = https://github.com/janestreet/ppx_traverse_builtins;
-		license = stdenv.lib.licenses.asl20;
-		inherit (ocaml.meta) platforms;
-		maintainers = [ stdenv.lib.maintainers.vbgl ];
-	};
-}