Version bump for HDBC.

svn path=/nixpkgs/trunk/; revision=28148
This commit is contained in:
Andres Löh 2011-08-04 10:16:30 +00:00
parent 237b2b8a30
commit 62c04c542b
4 changed files with 14 additions and 14 deletions

View File

@ -2,8 +2,8 @@
cabal.mkDerivation (self : {
pname = "HDBC-postgresql";
version = "2.1.0.0";
sha256 = "424b491766410df73f2df87a5cd4b5f4549850cc53a2f1c937b546ff1ef1562b";
version = "2.2.3.3";
sha256 = "1wh3pwqgxilz4v108q88z1gcqyzxp1fzd47s6g4857m1fzbdj7an";
propagatedBuildInputs = [HDBC parsec postgresql];
meta = {
description = "This package provides a PostgreSQL driver for HDBC";

View File

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

View File

@ -1,11 +1,11 @@
{cabal, HUnit, QuickCheck, mtl, time, utf8String, convertible, testpack}:
{cabal, HUnit, QuickCheck, mtl, time, utf8String, convertible, text, testpack}:
cabal.mkDerivation (self : {
pname = "HDBC";
version = "2.1.1";
sha256 = "9a3ab307c006fb9c22089a15d190339c45de0a32e700f2d9eda70423e719197c";
version = "2.2.7.0";
sha256 = "10bkmrd48knkr1zsm3fmnp7ah9y13pjwaya7z1f93sg29jq3k906";
propagatedBuildInputs =
[HUnit QuickCheck mtl time utf8String convertible testpack];
[HUnit QuickCheck mtl time utf8String convertible text testpack];
meta = {
description = "HDBC provides an abstraction layer between Haskell programs and SQL relational databases";
};

View File

@ -1,10 +1,10 @@
{cabal, mtl, time}:
{cabal, mtl, time, text}:
cabal.mkDerivation (self : {
pname = "convertible";
version = "1.0.9.1";
sha256 = "a1f46bf1166356c02e7a241d0bfea7010dc3e5f9f15181cfc2405a95df402914";
propagatedBuildInputs = [mtl time];
version = "1.0.10.0";
sha256 = "1phjxd40mfxzp2ma1yif5f2wrjqg21a5bwz05mh38lxrw68vm711";
propagatedBuildInputs = [mtl time text];
meta = {
description = "Typeclasses and instances for converting between types";
};