summary refs log tree commit diff
path: root/pkgs/development/libraries/readline
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2021-01-07 20:58:20 +0000
committerLancelot SIX <lsix@lancelotsix.com>2021-04-22 11:25:42 +0100
commit34a136c71023a44e6a2bfe5d0436981abee4f236 (patch)
treed9aaa030a39671f9df873bdc8afeab96d8338246 /pkgs/development/libraries/readline
parent1671b1f2a9c6b170a76a8cba05d1354c3d2c3c3e (diff)
downloadnixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar.gz
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar.bz2
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar.lz
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar.xz
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.tar.zst
nixpkgs-34a136c71023a44e6a2bfe5d0436981abee4f236.zip
readline80: delete
readline-8.0 is not used anywhere in the tree (since introduction of
readline-8.1); drop it.
Diffstat (limited to 'pkgs/development/libraries/readline')
-rw-r--r--pkgs/development/libraries/readline/8.0.nix62
-rw-r--r--pkgs/development/libraries/readline/readline-8.0-patches.nix8
2 files changed, 0 insertions, 70 deletions
diff --git a/pkgs/development/libraries/readline/8.0.nix b/pkgs/development/libraries/readline/8.0.nix
deleted file mode 100644
index 9ea0277467e..00000000000
--- a/pkgs/development/libraries/readline/8.0.nix
+++ /dev/null
@@ -1,62 +0,0 @@
-{ fetchurl, lib, stdenv, ncurses
-}:
-
-stdenv.mkDerivation rec {
-  pname = "readline";
-  version = "8.0p${toString (builtins.length upstreamPatches)}";
-
-  src = fetchurl {
-    url = "mirror://gnu/readline/readline-${meta.branch}.tar.gz";
-    sha256 = "0qg4924hf4hg0r0wbx2chswsr08734536fh5iagkd3a7f4czafg3";
-  };
-
-  outputs = [ "out" "dev" "man" "doc" "info" ];
-
-  propagatedBuildInputs = [ncurses];
-
-  patchFlags = [ "-p0" ];
-
-  upstreamPatches =
-    (let
-       patch = nr: sha256:
-         fetchurl {
-           url = "mirror://gnu/readline/readline-${meta.branch}-patches/readline80-${nr}";
-           inherit sha256;
-         };
-     in
-       import ./readline-8.0-patches.nix patch);
-
-  patches =
-    [ ./link-against-ncurses.patch
-      ./no-arch_only-6.3.patch
-    ]
-    ++ upstreamPatches;
-
-  meta = with lib; {
-    description = "Library for interactive line editing";
-
-    longDescription = ''
-      The GNU Readline library provides a set of functions for use by
-      applications that allow users to edit command lines as they are
-      typed in.  Both Emacs and vi editing modes are available.  The
-      Readline library includes additional functions to maintain a
-      list of previously-entered command lines, to recall and perhaps
-      reedit those lines, and perform csh-like history expansion on
-      previous commands.
-
-      The history facilities are also placed into a separate library,
-      the History library, as part of the build process.  The History
-      library may be used without Readline in applications which
-      desire its capabilities.
-    '';
-
-    homepage = "https://savannah.gnu.org/projects/readline/";
-
-    license = licenses.gpl3Plus;
-
-    maintainers = with maintainers; [ dtzWill ];
-
-    platforms = platforms.unix;
-    branch = "8.0";
-  };
-}
diff --git a/pkgs/development/libraries/readline/readline-8.0-patches.nix b/pkgs/development/libraries/readline/readline-8.0-patches.nix
deleted file mode 100644
index 2fac6a413c7..00000000000
--- a/pkgs/development/libraries/readline/readline-8.0-patches.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-# Automatically generated by `update-patch-set.sh'; do not edit.
-
-patch: [
-(patch "001" "0sfh7wn0pr743xspnb1zndxndlv9rc0hcg14cbw5cmyg6f4ykrfq")
-(patch "002" "1xy8mv8xm8hsfixwp3ci9kfx3dii3y92cq27wwd0jq75y6zzxc1n")
-(patch "003" "1vza7sxjcsr2z295ij12nzgncdil1vb6as3mqy4m7svi1chv5pcl")
-(patch "004" "0k1rfx9w32lglxg564yvp0mw6jg6883p8ac2f2lxxqpf80m3vami")
-]