nixpkgs-suyu/pkgs/development/libraries/haskell/hindent/default.nix
Peter Simons d5d593a256 haskell-hindent: disable test suite to fix the build
Test suite hspec: RUNNING...
hspec: test/gibiansky/tests/: getDirectoryContents: does not exist (No such file or directory)
Test suite hspec: FAIL
Test suite logged to: dist/test/hindent-3.9-hspec.log
0 of 1 test suites (0 of 1 test cases) passed.
2014-10-19 16:55:24 +02:00

22 lines
652 B
Nix

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, dataDefault, haskellSrcExts, hspec, monadLoops, mtl, text
}:
cabal.mkDerivation (self: {
pname = "hindent";
version = "3.9";
sha256 = "0x8qm39rmaw1s0fbljr9zp6vnqxfcs1w6a3ylrknwqgwbzzr5hbn";
isLibrary = true;
isExecutable = true;
buildDepends = [ dataDefault haskellSrcExts monadLoops mtl text ];
testDepends = [
dataDefault haskellSrcExts hspec monadLoops mtl text
];
doCheck = false;
meta = {
description = "Extensible Haskell pretty printer";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})