3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/hashed-storage/default.nix
Peter Simons 0b8ee12f09 haskell-hashed-storage: disable 'doCheck' because of test suite errors
running tests
/bin/sh: dist/build/hashed-storage-test/hashed-storage-test: No such file or directory
2013-02-25 00:32:44 +01:00

22 lines
590 B
Nix

{ cabal, binary, dataenc, extensibleExceptions, filepath, mmap, mtl
, zlib
}:
cabal.mkDerivation (self: {
pname = "hashed-storage";
version = "0.5.10";
sha256 = "1k7drnk0y5apjvwsiw85032yvxllbi7ndg6h9x207gnjxm64m0h5";
isLibrary = true;
isExecutable = true;
buildDepends = [
binary dataenc extensibleExceptions filepath mmap mtl zlib
];
doCheck = false;
meta = {
description = "Hashed file storage support code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})