about summary refs log tree commit diff
path: root/pkgs/development/misc/haskell/hasura/pool.nix
blob: a12d61f0fe21be14dc921ceca708bd34e00b5437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This has been automatically generated by the script
# ./update.sh.  This should not be changed by hand.
{ mkDerivation, base, fetchgit, hashable, hspec, lib, monad-control
, stm, time, transformers, transformers-base, vector
}:
mkDerivation {
  pname = "resource-pool";
  version = "0.2.3.2";
  src = fetchgit {
    url = "https://github.com/hasura/pool.git";
    sha256 = "00q1fxh72fgjwl1pi3lnp4xg8f3kfm6q12gs9scinwbymfgzarms";
    rev = "bc4c3f739a8fb8ec4444336a34662895831c9acf";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [
    base hashable monad-control stm time transformers transformers-base
    vector
  ];
  testHaskellDepends = [ base hspec ];
  homepage = "http://github.com/bos/pool";
  description = "A high-performance striped resource pooling implementation";
  license = lib.licenses.bsd3;
  maintainers = with lib.maintainers; [ lassulus ];
}