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

27 lines
946 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, binary, deepseq, extensibleExceptions, filepath, HUnit
, QuickCheck, regexPosix, testFramework, testFrameworkHunit
, testFrameworkQuickcheck2, time
}:
cabal.mkDerivation (self: {
pname = "Cabal";
version = "1.22.0.0";
sha256 = "13984rli87vzhl5pvpny2cns8dq4k2s5bgmr8n93iw9hrx5w3j48";
buildDepends = [ binary deepseq filepath time ];
testDepends = [
binary extensibleExceptions filepath HUnit QuickCheck regexPosix
testFramework testFrameworkHunit testFrameworkQuickcheck2
];
doCheck = false;
preCheck = "unset GHC_PACKAGE_PATH; export HOME=$NIX_BUILD_TOP";
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 = with self.stdenv.lib.maintainers; [ simons ];
};
})