nixpkgs/pkgs/development/libraries/haskell/Cabal/1.16.0.3.nix

22 lines
705 B
Nix
Raw Normal View History

{ cabal, extensibleExceptions, filepath, HUnit, QuickCheck
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
}:
2012-09-20 14:08:10 +02:00
cabal.mkDerivation (self: {
pname = "Cabal";
version = "1.16.0.3";
sha256 = "11lzqgdjaix8n7nabmafl3jf9gisb04c025cmdycfihfajfn49zg";
2012-09-20 14:08:10 +02:00
buildDepends = [ filepath ];
testDepends = [
extensibleExceptions filepath HUnit QuickCheck testFramework
testFrameworkHunit testFrameworkQuickcheck2
];
2012-09-20 14:08:10 +02:00
meta = {
homepage = "http://www.haskell.org/cabal/";
description = "A framework for packaging Haskell software";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})