nixpkgs/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3-1.1.4.0.nix
Yury G. Kudryashov 9b2659eec7 Merged with trunk again
svn path=/nixpkgs/branches/stdenv-updates/; revision=10295
2008-01-25 14:16:25 +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];
})