29 lines
865 B
Nix
29 lines
865 B
Nix
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
|
|
|
{ cabal, async, dataDefault, exceptions, filepath, leveldb, mtl
|
|
, QuickCheck, resourcet, snappy, tasty, tastyQuickcheck, temporary
|
|
, transformers
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "leveldb-haskell";
|
|
version = "0.5.1";
|
|
sha256 = "132r23svaazb26jnapgr3r8v8xmr8ln3w5r0iv8fg7pm55gsixx5";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
async dataDefault exceptions filepath resourcet transformers
|
|
];
|
|
testDepends = [
|
|
dataDefault exceptions mtl QuickCheck tasty tastyQuickcheck
|
|
temporary transformers
|
|
];
|
|
extraLibraries = [ leveldb snappy ];
|
|
meta = {
|
|
homepage = "http://github.com/kim/leveldb-haskell";
|
|
description = "Haskell bindings to LevelDB";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|