summary refs log tree commit diff
path: root/pkgs/development/libraries/libedit/default.nix
blob: 2121449af5ac05778a9a6bb722fb517f45c9ec8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, ncurses}:

stdenv.mkDerivation rec {
  name = "libedit-20090923-3.0";

  src = fetchurl {
    url = "http://www.thrysoee.dk/editline/${name}.tar.gz";
    sha256 = "02j66qbd1c9wfghpjb8dzshkcj4i0n9xanxy81552j3is9ilxjka";
  };

  postInstall = ''
    sed -i s/-lcurses/-lncurses/g $out/lib/pkgconfig/libedit.pc
  '';

  propagatedBuildInputs = [ ncurses ];

  meta = {
    homepage = "http://www.thrysoee.dk/editline/";
    description = "A port of the NetBSD Editline library (libedit)";
  };
}