summary refs log tree commit diff
path: root/pkgs/development/misc/haskell/hasura/pool.nix
blob: c03b1fb88121d42505e418dbce99b9d033f28d9d (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 = "02wa32fl5wq5fk59id54xmxiqjl564r4rhsc79xsgf2j2spj0v94";
    rev = "dc56753338e7b61220a09bed0469c6dcc5e9fb52";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [
    base hashable monad-control stm time transformers transformers-base
    vector
  ];
  testHaskellDepends = [ base hspec ];
  homepage = "https://github.com/bos/pool";
  description = "A high-performance striped resource pooling implementation";
  license = lib.licenses.bsd3;
  maintainers = with lib.maintainers; [ lassulus ];
}