nixpkgs/pkgs/development/tools/haskell/mkcabal/default.nix
Peter Simons b1ef3e6e36 Last batch of Haskell expression updates.
* haskell-mkcabal: updated to version 1.0.0
 * haskell-ghc-syb-utils: updated to version 0.2.1.0
 * haskell-darcs: updated to version 2.5.2

svn path=/nixpkgs/trunk/; revision=28449
2011-08-10 00:35:08 +00:00

21 lines
622 B
Nix

{ cabal, extensibleExceptions, mtl, pcreLight, readline }:
cabal.mkDerivation (self: {
pname = "mkcabal";
version = "1.0.0";
sha256 = "1cmawm49i01xxvzgf67cin6s9hihfc3ihr6s5hn2makasfxbnryc";
isLibrary = false;
isExecutable = true;
buildDepends = [ extensibleExceptions mtl pcreLight readline ];
meta = {
homepage = "http://code.haskell.org/~dons/code/mkcabal";
description = "Generate cabal files for a Haskell project";
license = "GPL";
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})