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-08-14 11:45:07 +01:00
|
|
|
version = "0.5.8";
|
|
|
|
sha256 = "1730hg6h7a1b0vgr9dvish41bpgly5cjpdwhqny75fi5in7dqplh";
|
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
|
|
|
})
|