Version bump for HDBC.

svn path=/nixpkgs/trunk/; revision=15946
This commit is contained in:
Andres Löh
2009-06-12 13:39:05 +00:00
parent 3f26456240
commit 97ad35b531
9 changed files with 81 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
{cabal, HDBC, sqlite}:
cabal.mkDerivation (self : {
pname = "HDBC-sqlite3";
version = "2.1.0.0";
sha256 = "a95f28fadd67ba1593cf75774308b7cfdde4a78ee5cba0a6aeb6c18723d8d67b";
propagatedBuildInputs = [HDBC sqlite];
meta = {
description = "This is the Sqlite v3 driver for HDBC, the generic database access system for Haskell";
};
})