2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, dataenc, extensibleExceptions, filepath, mmap, mtl
|
|
|
|
, zlib
|
2012-02-14 17:00:37 +00:00
|
|
|
}:
|
2009-10-08 14:07:13 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2009-10-08 14:07:13 +00:00
|
|
|
pname = "hashed-storage";
|
2012-09-18 10:04:01 +00:00
|
|
|
version = "0.5.10";
|
|
|
|
sha256 = "1k7drnk0y5apjvwsiw85032yvxllbi7ndg6h9x207gnjxm64m0h5";
|
2011-08-09 23:00:20 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
binary dataenc extensibleExceptions filepath mmap mtl zlib
|
2011-08-09 23:00:20 +00:00
|
|
|
];
|
2013-02-24 22:24:48 +00:00
|
|
|
doCheck = false;
|
2009-10-08 14:07:13 +00:00
|
|
|
meta = {
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Hashed file storage support code";
|
2011-08-07 18:23:48 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-10-08 14:07:13 +00:00
|
|
|
};
|
2010-07-22 18:04:39 +00:00
|
|
|
})
|