summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashed-storage/default.nix
blob: fb096838ed4fe91dd1624e91c991e76e4469906f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, mtl, zlib, mmap, binary, dataenc}:

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