libedit: Update to 20150325-3.1

+3 -2
+3 -2
pkgs/development/libraries/libedit/default.nix
··· 1 { stdenv, fetchurl, ncurses, groff }: 2 3 stdenv.mkDerivation rec { 4 - name = "libedit-20140620-3.1"; 5 6 src = fetchurl { 7 url = "http://www.thrysoee.dk/editline/${name}.tar.gz"; 8 - sha256 = "1wnapwcpl4yq8p95j898jl0hsr39if28qzm5a7zwkbplihm9nax2"; 9 }; 10 11 # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds. ··· 23 homepage = "http://www.thrysoee.dk/editline/"; 24 description = "A port of the NetBSD Editline library (libedit)"; 25 license = licenses.bsd3; 26 }; 27 }
··· 1 { stdenv, fetchurl, ncurses, groff }: 2 3 stdenv.mkDerivation rec { 4 + name = "libedit-20150325-3.1"; 5 6 src = fetchurl { 7 url = "http://www.thrysoee.dk/editline/${name}.tar.gz"; 8 + sha256 = "1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8"; 9 }; 10 11 # Have `configure' avoid `/usr/bin/nroff' in non-chroot builds. ··· 23 homepage = "http://www.thrysoee.dk/editline/"; 24 description = "A port of the NetBSD Editline library (libedit)"; 25 license = licenses.bsd3; 26 + platforms = platforms.all; 27 }; 28 }