2012-02-14 09:00:37 -08:00
|
|
|
{ cabal, Cabal, libedit }:
|
2008-07-31 05:38:09 -07:00
|
|
|
|
2011-08-15 04:27:02 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2008-07-31 05:38:09 -07:00
|
|
|
pname = "editline";
|
2009-04-21 14:19:49 -07:00
|
|
|
version = "0.2.1.0";
|
|
|
|
sha256 = "83618e5f86074fdc11d7f5033aa2886284462941be38fa02966acc92712c46e1";
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [ Cabal ];
|
2011-08-23 03:35:49 -07:00
|
|
|
extraLibraries = [ libedit ];
|
2008-07-31 05:38:09 -07:00
|
|
|
meta = {
|
2011-08-15 04:27:02 -07:00
|
|
|
homepage = "http://code.haskell.org/editline";
|
|
|
|
description = "Bindings to the editline library (libedit)";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-07-31 05:38:09 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|