3
0
Fork 0
forked from mirrors/nixpkgs

Added mkcabal.

svn path=/nixpkgs/trunk/; revision=16875
This commit is contained in:
Andres Löh 2009-08-27 06:35:17 +00:00
parent d22e36efe0
commit 543483d99f
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{cabal, mtl, pcreLight, readline}:
cabal.mkDerivation (self : {
pname = "mkcabal";
version = "0.4.2";
name = self.fname;
sha256 = "a3d781fdcdea4ac27a897888593091d4afee10dfc3eff5a49f9108b346232f50";
propagatedBuildInputs = [mtl pcreLight readline];
meta = {
description = "Generate cabal files for a Haskell project";
};
})

View file

@ -586,6 +586,10 @@ rec {
inherit cabal mtl network time;
};
mkcabal = import ../development/tools/haskell/mkcabal {
inherit cabal mtl pcreLight readline;
};
tar = import ../development/tools/haskell/tar {
inherit cabal binary;
};