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