From 62c04c542b29f6d882f2d2fc4415f7854fc38d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20L=C3=B6h?= Date: Thu, 4 Aug 2011 10:16:30 +0000 Subject: [PATCH] Version bump for HDBC. svn path=/nixpkgs/trunk/; revision=28148 --- .../libraries/haskell/HDBC/HDBC-postgresql.nix | 4 ++-- pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix | 8 ++++---- pkgs/development/libraries/haskell/HDBC/HDBC.nix | 8 ++++---- .../development/libraries/haskell/convertible/default.nix | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix b/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix index 4877a9fe8cb..de8ef309f1c 100644 --- a/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix +++ b/pkgs/development/libraries/haskell/HDBC/HDBC-postgresql.nix @@ -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"; diff --git a/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix b/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix index e6aefbb825a..6042829915f 100644 --- a/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix +++ b/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix @@ -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"; }; diff --git a/pkgs/development/libraries/haskell/HDBC/HDBC.nix b/pkgs/development/libraries/haskell/HDBC/HDBC.nix index abfa0aea85b..f3840b25d94 100644 --- a/pkgs/development/libraries/haskell/HDBC/HDBC.nix +++ b/pkgs/development/libraries/haskell/HDBC/HDBC.nix @@ -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"; }; diff --git a/pkgs/development/libraries/haskell/convertible/default.nix b/pkgs/development/libraries/haskell/convertible/default.nix index 7adc2e974f3..6a56a832636 100644 --- a/pkgs/development/libraries/haskell/convertible/default.nix +++ b/pkgs/development/libraries/haskell/convertible/default.nix @@ -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"; };