summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashed-storage/default.nix
blob: 77a4251259d3e38d35b79965697c5965b1aef959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, binary, dataenc, extensibleExceptions, filepath, mmap, mtl
, zlib
}:

cabal.mkDerivation (self: {
  pname = "hashed-storage";
  version = "0.5.10";
  sha256 = "1k7drnk0y5apjvwsiw85032yvxllbi7ndg6h9x207gnjxm64m0h5";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [
    binary dataenc extensibleExceptions filepath mmap mtl zlib
  ];
  doCheck = false;
  meta = {
    description = "Hashed file storage support code";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})