2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, ncurses }:
|
2009-04-16 20:25:22 +01:00
|
|
|
|
2009-10-06 17:47:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-24 23:38:26 +00:00
|
|
|
pname = "libedit";
|
2020-01-03 20:48:03 +00:00
|
|
|
version = "20191231-3.1";
|
2009-10-06 17:47:37 +01:00
|
|
|
|
2009-04-16 20:25:22 +01:00
|
|
|
src = fetchurl {
|
2019-03-24 23:38:26 +00:00
|
|
|
url = "https://thrysoee.dk/editline/${pname}-${version}.tar.gz";
|
2020-01-03 20:48:03 +00:00
|
|
|
sha256 = "0wch48nml28jj6ild889745dsg2agm7mpvrmbl1gi98nw6vjrf6v";
|
2009-04-16 20:25:22 +01:00
|
|
|
};
|
2009-10-06 17:47:37 +01:00
|
|
|
|
2016-09-05 11:00:03 +01: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 11:00:03 +01:00
|
|
|
patches = [ ./01-cygwin.patch ];
|
2015-12-30 08:54:36 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ ncurses ];
|
|
|
|
|
2010-04-22 19:16:18 +01:00
|
|
|
postInstall = ''
|
2015-09-18 22:51:58 +01: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 19:16:18 +01:00
|
|
|
'';
|
|
|
|
|
2013-10-29 08:34:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.thrysoee.dk/editline/";
|
2009-04-16 20:25:22 +01:00
|
|
|
description = "A port of the NetBSD Editline library (libedit)";
|
2015-12-30 08:54:36 +00:00
|
|
|
license = licenses.bsd3;
|
2015-04-20 19:40:46 +01:00
|
|
|
platforms = platforms.all;
|
2009-04-16 20:25:22 +01:00
|
|
|
};
|
|
|
|
}
|