nixpkgs/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3-1.1.4.0.nix
Andres Löh 4a49a7befc * gtk2hs switched to ghc-6.8.2 (but still not following the scheme of the other Haskell libs)
* HDBC with postgresql and sqlite3 drivers added

svn path=/nixpkgs/trunk/; revision=10287
2008-01-25 12:42:07 +00:00

13 lines
349 B
Nix

{cabal, HDBC, sqlite}:
cabal.mkDerivation (self : {
pname = "HDBC-sqlite3";
version = "1.1.4.0";
sha256 = "328fed8d4cdba4311efd50d9d60591a81481317ddba10c58fbaa2ec7f418f788";
meta = {
description = "This is the Sqlite v3 driver for HDBC, the generic database access system for Haskell";
};
propagatedBuildInputs = [HDBC sqlite];
})