Updated build expressions for the current version of cabal.nix.

svn path=/nixpkgs/trunk/; revision=28772
This commit is contained in:
Peter Simons
2011-08-23 10:35:49 +00:00
parent 1972e6f6dc
commit c8ae7cc8bb
34 changed files with 153 additions and 108 deletions

View File

@@ -1,10 +1,10 @@
{ cabal, libedit } :
{ cabal, libedit }:
cabal.mkDerivation (self: {
pname = "editline";
version = "0.2.1.0";
sha256 = "83618e5f86074fdc11d7f5033aa2886284462941be38fa02966acc92712c46e1";
propagatedBuildInputs = [ libedit ];
extraLibraries = [ libedit ];
meta = {
homepage = "http://code.haskell.org/editline";
description = "Bindings to the editline library (libedit)";
@@ -16,4 +16,3 @@ cabal.mkDerivation (self: {
];
};
})