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

cabal.mkDerivation (self: {
  pname = "editline";
  version = "0.2.1.0";
  sha256 = "1qa65iqr5k3ajq1glf5y84lld132i2i3l0zmsw8xqkq7hrgqwqc3";
  extraLibraries = [ libedit ];
  meta = {
    homepage = "http://code.haskell.org/editline";
    description = "Bindings to the editline library (libedit)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})