summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/notty
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/notty
parentc5cac5051af83b41c3601e7e7116f7b49c8dd010 (diff)
downloadnixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.gz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.bz2
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.lz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.xz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.zst
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.zip
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/notty')
-rw-r--r--pkgs/development/ocaml-modules/notty/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix
deleted file mode 100644
index 431004b41b4..00000000000
--- a/pkgs/development/ocaml-modules/notty/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, buildOcaml, fetchFromGitHub, findlib
-, result, uucp, uuseg, uutf
-, withLwt ? true
-, lwt     ? null }:
-
-with stdenv.lib;
-assert withLwt -> lwt != null;
-
-buildOcaml rec {
-  version = "0.1.1";
-  name = "notty";
-
-  minimumSupportedOcamlVersion = "4.02";
-
-  src = fetchFromGitHub {
-    owner  = "pqwy";
-    repo   = "notty";
-    rev    = "v${version}";
-    sha256 = "0bw3bq8z2y1rhc20zn13s78sazywyzpg8nmyjch33p7ypxfglf01";
-  };
-
-  buildInputs = [ findlib ];
-  propagatedBuildInputs = [ result uucp uuseg uutf ] ++
-                          optional withLwt lwt;
-
-  configureFlags = [ "--enable-unix" ] ++
-                   optional withLwt ["--enable-lwt"];
-  configurePhase = "./configure --prefix $out $configureFlags";
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/pqwy/notty/tree/master;
-    description = "Declarative terminal graphics for OCaml.";
-    license = licenses.isc;
-    maintainers = with maintainers; [ sternenseemann ];
-  };
-}