about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ptime
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-11-04 12:24:57 +0100
committerProfpatsch <mail@profpatsch.de>2016-11-04 12:24:57 +0100
commit2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213 (patch)
tree947e0194e8689d45eb9d83aaa27c3471bcbfd350 /pkgs/development/ocaml-modules/ptime
parentc5cac5051af83b41c3601e7e7116f7b49c8dd010 (diff)
Revert "Merge pull request #20090 from sternenseemann/master"
Reason: https://github.com/NixOS/nixpkgs/pull/20090#commitcomment-19686426

This reverts commit 9ffcb1b2503303bfdb4a8fc31c8e4160184eb74c, reversing
changes made to a6283c1126676d30de3abfb3ee8865505da0ed43.
Diffstat (limited to 'pkgs/development/ocaml-modules/ptime')
-rw-r--r--pkgs/development/ocaml-modules/ptime/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/development/ocaml-modules/ptime/default.nix b/pkgs/development/ocaml-modules/ptime/default.nix
deleted file mode 100644
index bb85001973114..0000000000000
--- a/pkgs/development/ocaml-modules/ptime/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{stdenv, fetchurl, buildOcaml, ocaml, findlib, ocamlbuild, topkg, result, opam}:
-
-let ocaml-version = stdenv.lib.getVersion ocaml; in
-
-buildOcaml rec {
-  version = "0.8.2";
-  name = "ptime";
-
-  src = fetchurl {
-    url = "http://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
-    sha256 = "1lihkhzskzwxskiarh4mvf7gbz5nfv25vmazbfz81m344i32a5pj";
-  };
-
-  unpackCmd = "tar -xf $curSrc";
-
-  buildInputs = [ ocaml findlib ocamlbuild topkg opam ];
-
-  propagatedBuildInputs = [ result ];
-
-  buildPhase = ''
-    ocaml -I ${findlib}/lib/ocaml/${ocaml-version}/site-lib/ pkg/pkg.ml build --with-js_of_ocaml false
-  '';
-
-  installPhase = ''
-    opam-installer --script --prefix=$out ptime.install | sh
-    ln -s $out/lib/ptime $out/lib/ocaml/${ocaml.version}/site-lib
-  '';
-
-  meta = {
-    homepage = http://erratique.ch/software/ptime;
-    description = "POSIX time for OCaml.";
-    longDescription = ''
-      Ptime has platform independent POSIX time support in pure OCaml.
-      It provides a type to represent a well-defined range of POSIX timestamps
-      with picosecond precision, conversion with date-time values, conversion
-      with RFC 3339 timestamps and pretty printing to a human-readable,
-      locale-independent representation.
-
-      The additional Ptime_clock library provides access to a system POSIX clock
-      and to the system's current time zone offset.
-
-      Ptime is not a calendar library.
-    '';
-    license = stdenv.lib.licenses.isc;
-    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
-  };
-}