1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

libedit: Update to 20150325-3.1

This commit is contained in:
William A. Kennington III 2015-04-20 11:40:46 -07:00
parent f8d5b67c61
commit 65373ed2f6

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, ncurses, groff }:
stdenv.mkDerivation rec {
name = "libedit-20140620-3.1";
name = "libedit-20150325-3.1";
src = fetchurl {
url = "http://www.thrysoee.dk/editline/${name}.tar.gz";
sha256 = "1wnapwcpl4yq8p95j898jl0hsr39if28qzm5a7zwkbplihm9nax2";
sha256 = "1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8";
};
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
@ -23,5 +23,6 @@ stdenv.mkDerivation rec {
homepage = "http://www.thrysoee.dk/editline/";
description = "A port of the NetBSD Editline library (libedit)";
license = licenses.bsd3;
platforms = platforms.all;
};
}