2011-01-13 11:03:16 +01:00
|
|
|
{ stdenv, fetchurl, ncurses, groff }:
|
2009-04-16 21:25:22 +02:00
|
|
|
|
2009-10-06 18:47:37 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-10-29 09:34:37 +01:00
|
|
|
name = "libedit-20130712-3.1";
|
2009-10-06 18:47:37 +02:00
|
|
|
|
2009-04-16 21:25:22 +02:00
|
|
|
src = fetchurl {
|
2009-10-06 18:47:37 +02:00
|
|
|
url = "http://www.thrysoee.dk/editline/${name}.tar.gz";
|
2013-10-29 09:34:37 +01:00
|
|
|
sha256 = "0dwav34041sariyl00nr106xmn123bnxir4qpn5y47vgssfim6sx";
|
2009-04-16 21:25:22 +02:00
|
|
|
};
|
2009-10-06 18:47:37 +02:00
|
|
|
|
2011-01-13 11:03:16 +01:00
|
|
|
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
|
|
|
|
NROFF = "${groff}/bin/nroff";
|
|
|
|
|
2010-04-22 20:16:18 +02:00
|
|
|
postInstall = ''
|
2010-11-15 20:39:11 +01:00
|
|
|
sed -i s/-lncurses/-lncursesw/g $out/lib/pkgconfig/libedit.pc
|
2010-04-22 20:16:18 +02:00
|
|
|
'';
|
|
|
|
|
2013-10-31 00:43:32 +01:00
|
|
|
# taken from gentoo http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/libedit/files/
|
|
|
|
patches = [ ./freebsd.patch ./freebsd_weak_ref.patch ];
|
|
|
|
|
2010-11-15 20:39:11 +01:00
|
|
|
configureFlags = "--enable-widec";
|
|
|
|
|
2009-04-16 21:25:22 +02:00
|
|
|
propagatedBuildInputs = [ ncurses ];
|
|
|
|
|
2013-10-29 09:34:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-16 21:25:22 +02:00
|
|
|
homepage = "http://www.thrysoee.dk/editline/";
|
|
|
|
description = "A port of the NetBSD Editline library (libedit)";
|
2013-10-29 09:34:37 +01:00
|
|
|
license = licenses.bsd3;
|
2009-04-16 21:25:22 +02:00
|
|
|
};
|
|
|
|
}
|