about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-11-13T19·55+0100
committerEelco Dolstra <edolstra@gmail.com>2018-11-13T19·55+0100
commit9dc9b64aadadd9f3b8277fb942b00dad1a753fd3 (patch)
treeb25db39a37d528d452a4a71504343c745b478061
parent6c6bbeb439517a21b2a04b83f073650b41d28be0 (diff)
Remove editline expression, not needed anymore
-rw-r--r--editline.nix24
-rw-r--r--release-common.nix2
2 files changed, 0 insertions, 26 deletions
diff --git a/editline.nix b/editline.nix
deleted file mode 100644
index dc44c7d8705f..000000000000
--- a/editline.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchFromGitHub, autoreconfHook }:
-
-stdenv.mkDerivation rec {
-  name = "editline-${version}";
-  version = "1.16.0";
-  src = fetchFromGitHub {
-    owner = "troglobit";
-    repo = "editline";
-    rev = version;
-    sha256 = "0a751dp34mk9hwv59ss447csknpm5i5cgd607m3fqf24rszyhbf2";
-  };
-
-  nativeBuildInputs = [ autoreconfHook ];
-
-  dontDisableStatic = true;
-
-  meta = with stdenv.lib; {
-    homepage = http://troglobit.com/editline.html;
-    description = "A readline() replacement for UNIX without termcap (ncurses)";
-    license = licenses.bsdOriginal;
-    maintainers = with maintainers; [ dtzWill ];
-    platforms = platforms.all;
-  };
-}
diff --git a/release-common.nix b/release-common.nix
index f495df1440d6..4c5565985267 100644
--- a/release-common.nix
+++ b/release-common.nix
@@ -29,8 +29,6 @@ rec {
     '';
   });
 
-  editline = pkgs.editline or (pkgs.callPackage ./editline.nix {});
-
   configureFlags =
     [
       "--enable-gc"