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

@@ -1,10 +0,0 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "HDBC";
version = "1.1.4";
sha256 = "de03020874b532f7aa734f093caf0709e7d33d0d64c59ce0a003b2269fc85597";
meta = {
description = "HDBC provides an abstraction layer between Haskell programs and SQL relational databases";
};
})

View File

@@ -1,12 +0,0 @@
{cabal, HDBC, postgresql}:
cabal.mkDerivation (self : {
pname = "HDBC-postgresql";
version = "1.1.4.0";
sha256 = "039eae03693330fee0e4083e22d502f94865969b243744a939786f598aec34ad";
meta = {
description = "This package provides a PostgreSQL driver for HDBC";
};
propagatedBuildInputs = [HDBC postgresql];
})

View File

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

View File

@@ -2,11 +2,11 @@
cabal.mkDerivation (self : {
pname = "HDBC-sqlite3";
version = "1.1.4.0";
sha256 = "328fed8d4cdba4311efd50d9d60591a81481317ddba10c58fbaa2ec7f418f788";
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";
};
propagatedBuildInputs = [HDBC sqlite];
})

View File

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

View File

@@ -0,0 +1,12 @@
{cabal, mtl, time}:
cabal.mkDerivation (self : {
pname = "convertible";
version = "1.0.5";
sha256 = "caf75727a35cf249690f3da60fce770642c8a1fad6080f3ba57e924fbe3c9465";
propagatedBuildInputs = [mtl time];
meta = {
description = "Typeclasses and instances for converting between types";
};
})

View File

@@ -0,0 +1,12 @@
{cabal, HUnit, QuickCheck, mtl}:
cabal.mkDerivation (self : {
pname = "testpack";
version = "1.0.2";
sha256 = "ff3d24a755aeeb765d5e93aa0189d0d67ac96b2d84e27a29609eb4738a6cdabc";
propagatedBuildInputs = [HUnit QuickCheck mtl];
meta = {
description = "Test Utility Pack for HUnit and QuickCheck";
};
})

View File

@@ -0,0 +1,11 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "time";
version = "1.1.3";
sha256 = "46d32400bc0099ccef1fb670684c00a31055725403ea15c7a39278ff7dccc65b";
meta = {
description = "A time library";
};
})