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