2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, libedit }:
|
2008-07-31 14:38:09 +02:00
|
|
|
|
2011-08-15 13:27:02 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2008-07-31 14:38:09 +02:00
|
|
|
pname = "editline";
|
2012-11-26 15:16:17 +01:00
|
|
|
version = "0.2.1.1";
|
|
|
|
sha256 = "101zhzja14n8bhbrly7w2aywx3sxyzgyjdrmgpg4gn4alf4lzdlz";
|
2011-08-23 12:35:49 +02:00
|
|
|
extraLibraries = [ libedit ];
|
2008-07-31 14:38:09 +02:00
|
|
|
meta = {
|
2011-08-15 13:27:02 +02: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;
|
2008-07-31 14:38:09 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|