mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
readline-6.3: update, including security fixes
Close #3706 CVE-2014-2524 (likely not affecting any our program anyway).
This commit is contained in:
parent
3775fa9ea2
commit
2b75fe851b
@ -1,11 +1,13 @@
|
||||
{ fetchurl, stdenv, ncurses }:
|
||||
{ fetchzip, stdenv, ncurses }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "readline-6.3";
|
||||
name = "readline-6.3p08";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/readline/${name}.tar.gz";
|
||||
sha256 = "0hzxr9jxqqx5sxsv9vmlxdnvlr9vi4ih1avjb869hbs6p5qn1fjn";
|
||||
src = fetchzip {
|
||||
#url = "mirror://gnu/readline/${name}.tar.gz";
|
||||
url = "http://git.savannah.gnu.org/cgit/readline.git/snapshot/"
|
||||
+ "readline-a73b98f779b388a5d0624e02e8bb187246e3e396.tar.gz";
|
||||
sha256 = "19ji3wrv4fs79fd0nkacjy9q94pvy2cm66yb3aqysahg0cbrz5l1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ncurses];
|
||||
@ -17,7 +19,7 @@ stdenv.mkDerivation (rec {
|
||||
./no-arch_only-6.3.patch
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "GNU Readline, a library for interactive line editing";
|
||||
|
||||
longDescription = ''
|
||||
@ -37,9 +39,11 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
homepage = http://savannah.gnu.org/projects/readline/;
|
||||
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
maintainers = [ maintainers.ludo ];
|
||||
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user