summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/custom_printf/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-05 19:42:16 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-05 19:42:16 +0200
commit1c68570ab297a96861ec87034ff9ef155e23b0a4 (patch)
treea6785ac0ec23ec3b4686ec4c11b0cc4590320c80 /pkgs/development/ocaml-modules/custom_printf/default.nix
parent462aa777dfbb45829321dead7749382e3d551e8c (diff)
parent43f71029cc6b18c1b4db4d01b35dbb30425c2f4e (diff)
downloadnixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar.gz
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar.bz2
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar.lz
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar.xz
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.tar.zst
nixpkgs-1c68570ab297a96861ec87034ff9ef155e23b0a4.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/ocaml-modules/custom_printf/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/custom_printf/default.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/ocaml-modules/custom_printf/default.nix b/pkgs/development/ocaml-modules/custom_printf/default.nix
deleted file mode 100644
index 8f8a0a5c886..00000000000
--- a/pkgs/development/ocaml-modules/custom_printf/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{stdenv, buildOcaml, fetchurl, type_conv, sexplib_p4, pa_ounit}:
-
-buildOcaml rec {
-  name = "custom_printf";
-  version = "112.24.00";
-
-  minimumSupportedOcamlVersion = "4.02";
-
-  src = fetchurl {
-    url = "https://github.com/janestreet/custom_printf/archive/${version}.tar.gz";
-    sha256 = "dad3aface92c53e8fbcc12cc9358c4767cb1cb09857d4819a10ed98eccaca8f9";
-  };
-
-  buildInputs = [ pa_ounit ];
-  propagatedBuildInputs = [ type_conv sexplib_p4 ];
-
-  meta = with stdenv.lib; {
-    homepage = "https://github.com/janestreet/custom_printf";
-    description = "Syntax extension for printf format strings";
-    license = licenses.asl20;
-    maintainers = [ maintainers.ericbmerritt ];
-  };
-}