summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
blob: 4877a9fe8cb0abf29c38e19b331590819f04c523 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, HDBC, postgresql, parsec}:

cabal.mkDerivation (self : {
  pname = "HDBC-postgresql";
  version = "2.1.0.0";
  sha256 = "424b491766410df73f2df87a5cd4b5f4549850cc53a2f1c937b546ff1ef1562b";
  propagatedBuildInputs = [HDBC parsec postgresql];
  meta = {
    description = "This package provides a PostgreSQL driver for HDBC";
  };
})