Updated Haskell package meta sections.

svn path=/nixpkgs/trunk/; revision=28583
This commit is contained in:
Peter Simons
2011-08-15 11:27:02 +00:00
parent bc4526f1c4
commit 21b26aef25
46 changed files with 320 additions and 90 deletions

View File

@@ -1,12 +1,19 @@
{ cabal, libedit } :
cabal.mkDerivation (self : {
cabal.mkDerivation (self: {
pname = "editline";
version = "0.2.1.0";
sha256 = "83618e5f86074fdc11d7f5033aa2886284462941be38fa02966acc92712c46e1";
propagatedBuildInputs = [ libedit ];
meta = {
description = "Binding to the BSD editline library (libedit)";
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
];
};
})