mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
22 lines
590 B
Nix
22 lines
590 B
Nix
{ cabal, binary, dataenc, extensibleExceptions, filepath, mmap, mtl
|
|
, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hashed-storage";
|
|
version = "0.5.11";
|
|
sha256 = "0s8mnayxlvwrrii2l63b372yi5g08br6gpbgz2256d8y128mwjvk";
|
|
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 ];
|
|
};
|
|
})
|