4a49a7befc
* HDBC with postgresql and sqlite3 drivers added svn path=/nixpkgs/trunk/; revision=10287
13 lines
325 B
Nix
13 lines
325 B
Nix
{cabal, HDBC, postgresql}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "HDBC-postgresql";
|
|
version = "1.1.4.0";
|
|
sha256 = "039eae03693330fee0e4083e22d502f94865969b243744a939786f598aec34ad";
|
|
meta = {
|
|
description = "This package provides a PostgreSQL driver for HDBC";
|
|
};
|
|
propagatedBuildInputs = [HDBC postgresql];
|
|
})
|
|
|