nixpkgs/pkgs/development/libraries/libedit/default.nix

33 lines
847 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses }:
stdenv.mkDerivation rec {
2019-03-24 23:38:26 +00:00
pname = "libedit";
2021-06-05 17:06:22 +01:00
version = "20210522-3.1";
src = fetchurl {
2019-03-24 23:38:26 +00:00
url = "https://thrysoee.dk/editline/${pname}-${version}.tar.gz";
2021-06-05 17:06:22 +01:00
sha256 = "sha256-AiC8IEfpJ8DBmE7197TrKpRppbe/ErpXPKOyPKAru28=";
};
outputs = [ "out" "dev" ];
# Have `configure' avoid `/usr/bin/nroff' in non-chroot builds.
# NROFF = "${groff}/bin/nroff";
patches = [ ./01-cygwin.patch ];
propagatedBuildInputs = [ ncurses ];
postInstall = ''
2015-09-18 22:51:58 +01:00
find $out/lib -type f | grep '\.\(la\|pc\)''$' | xargs sed -i \
-e 's,-lncurses[a-z]*,-L${ncurses.out}/lib -lncursesw,g'
'';
meta = with lib; {
homepage = "http://www.thrysoee.dk/editline/";
description = "A port of the NetBSD Editline library (libedit)";
license = licenses.bsd3;
2015-04-20 19:40:46 +01:00
platforms = platforms.all;
};
}