summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/editline/default.nix
blob: b477df5fbd1431c7b9759c92eedec9c06728f348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ cabal, libedit } :

cabal.mkDerivation (self : {
  pname = "editline";
  version = "0.2.1.0";
  sha256 = "83618e5f86074fdc11d7f5033aa2886284462941be38fa02966acc92712c46e1";
  propagatedBuildInputs = [ libedit ];
  meta = {
    description = "Binding to the BSD editline library (libedit)";
  };
})