mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-14 08:04:47 +00:00
![Andres Löh](/assets/img/avatar_default.png)
* 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];
|
|
})
|
|
|