f808ba588b
The release archive is missing a Setup.hs file, which makes the test suite fail. Thanks to Kevin Quick for finding this issue!
26 lines
775 B
Nix
26 lines
775 B
Nix
{ cabal, extensibleExceptions, filepath, HUnit, QuickCheck
|
|
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Cabal";
|
|
version = "1.16.0.3";
|
|
sha256 = "11lzqgdjaix8n7nabmafl3jf9gisb04c025cmdycfihfajfn49zg";
|
|
buildDepends = [ filepath ];
|
|
testDepends = [
|
|
extensibleExceptions filepath HUnit QuickCheck testFramework
|
|
testFrameworkHunit testFrameworkQuickcheck2
|
|
];
|
|
doCheck = false;
|
|
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
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|