2011-08-09 16:00:20 -07:00
|
|
|
{ cabal, binary, dataenc, extensibleExceptions, mmap, mtl, zlib }:
|
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-08-14 03:45:07 -07:00
|
|
|
version = "0.5.8";
|
|
|
|
sha256 = "1730hg6h7a1b0vgr9dvish41bpgly5cjpdwhqny75fi5in7dqplh";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
binary dataenc extensibleExceptions mmap mtl zlib
|
|
|
|
];
|
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
|
|
|
})
|