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