about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hedis/default.nix
blob: daa4370ef7ab43b7586af77b95053c214d2d6090 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, attoparsec, BoundedChan, bytestringLexing, HUnit, mtl
, network, resourcePool, testFramework, testFrameworkHunit, time
, vector
}:

cabal.mkDerivation (self: {
  pname = "hedis";
  version = "0.6.5";
  sha256 = "1kn8i49yxms1bpjwpy4m8vyycgi755zvy4zc66w068nmnd1kiykh";
  buildDepends = [
    attoparsec BoundedChan bytestringLexing mtl network resourcePool
    time vector
  ];
  testDepends = [ HUnit mtl testFramework testFrameworkHunit time ];
  doCheck = false;
  meta = {
    homepage = "https://github.com/informatikr/hedis";
    description = "Client library for the Redis datastore: supports full command set, pipelining";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})