forked from mirrors/nixpkgs
Added mkcabal.
svn path=/nixpkgs/trunk/; revision=16875
This commit is contained in:
parent
d22e36efe0
commit
543483d99f
12
pkgs/development/tools/haskell/mkcabal/default.nix
Normal file
12
pkgs/development/tools/haskell/mkcabal/default.nix
Normal 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";
|
||||
};
|
||||
})
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue