2011-01-13 10:03:16 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, groff }:
|
2009-04-16 19:25:22 +00:00
|
|
|
|
2009-10-06 16:47:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-09 22:03:33 +00:00
|
|
|
name = "libedit-20180525-3.1";
|
2009-10-06 16:47:37 +00:00
|
|
|
|
2009-04-16 19:25:22 +00:00
|
|
|
src = fetchurl {
|
2016-09-05 10:00:03 +00:00
|
|
|
url = "http://thrysoee.dk/editline/${name}.tar.gz";
|
2018-06-09 22:03:33 +00:00
|
|
|
sha256 = "05iicng4kag5hxdc7adbyj1gm3qbmvcc33m9cyx5gys0s67yl6y4";
|
2009-04-16 19:25:22 +00:00
|
|
|
};
|
2009-10-06 16:47:37 +00:00
|
|
|
|
2016-09-05 10:00:03 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2011-01-13 10:03:16 +00:00
|
|
|
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
|
2018-01-16 01:12:03 +00:00
|
|
|
# NROFF = "${groff}/bin/nroff";
|
2011-01-13 10:03:16 +00:00
|
|
|
|
2016-09-05 10:00:03 +00:00
|
|
|
patches = [ ./01-cygwin.patch ];
|
2015-12-30 08:54:36 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-widec" ];
|
2015-06-05 08:34:00 +00:00
|
|
|
|
2010-04-22 18:16:18 +00:00
|
|
|
postInstall = ''
|
2015-09-18 21:51:58 +00:00
|
|
|
find $out/lib -type f | grep '\.\(la\|pc\)''$' | xargs sed -i \
|
2016-02-01 17:16:50 +00:00
|
|
|
-e 's,-lncurses[a-z]*,-L${ncurses.out}/lib -lncursesw,g'
|
2010-04-22 18:16:18 +00:00
|
|
|
'';
|
|
|
|
|
2013-10-29 08:34:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-09-05 10:00:03 +00:00
|
|
|
homepage = http://www.thrysoee.dk/editline/;
|
2009-04-16 19:25:22 +00:00
|
|
|
description = "A port of the NetBSD Editline library (libedit)";
|
2015-12-30 08:54:36 +00:00
|
|
|
license = licenses.bsd3;
|
2015-04-20 18:40:46 +00:00
|
|
|
platforms = platforms.all;
|
2009-04-16 19:25:22 +00:00
|
|
|
};
|
|
|
|
}
|