summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix
blob: 6b0df7e9d852c3a764448666ab99fc8b125cb73b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, convertible, HDBC, mtl, parsec, postgresql, time
, utf8String
}:

cabal.mkDerivation (self: {
  pname = "HDBC-postgresql";
  version = "2.3.2.2";
  sha256 = "0x42lf429dxjkz22jn5fybimlixxs20zq01ap40344qlwh01hd90";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ convertible HDBC mtl parsec time utf8String ];
  extraLibraries = [ postgresql ];
  meta = {
    homepage = "http://github.com/hdbc/hdbc-postgresql";
    description = "PostgreSQL driver for HDBC";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})