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";
|
2011-10-09 17:29:52 +02:00
|
|
|
version = "0.5.9";
|
|
|
|
sha256 = "1ycn0zwk5jqm6wwgs8nxpdg7fh5wx0i2058i0a924whj196kkhk2";
|
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
|
|
|
];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-10-08 16:07:13 +02:00
|
|
|
};
|
2010-07-22 20:04:39 +02:00
|
|
|
})
|