libedit: Update to 20150325-3.1

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