nixpkgs/pkgs/development/libraries/haskell/hashed-storage/default.nix
Andres Löh f892a8efaa Darcs updated to 2.4.1; now ghc-6.12-compatible.
svn path=/nixpkgs/trunk/; revision=21355
2010-04-27 19:51:37 +00:00

14 lines
392 B
Nix

{cabal, mtl, zlib, mmap, binary, dataenc}:
cabal.mkDerivation (self : {
pname = "hashed-storage";
version = "0.4.11";
sha256 = "c719f9b86c5a517324ce3448fcb4b6377ccbfa085268b396bec47b8bbcfbde1b";
propagatedBuildInputs = [mtl zlib mmap binary dataenc];
meta = {
description = "Hashed file storage support code";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})