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";
};
})

View file

@ -42,6 +42,11 @@ rec {
inherit cabal mtl network parsec xhtml;
};
convertible = import ../development/libraries/haskell/convertible {
inherit cabal mtl;
time = time113;
};
Crypto = import ../development/libraries/haskell/Crypto {
inherit cabal;
};
@ -127,16 +132,16 @@ rec {
inherit cabal;
};
HDBC = import ../development/libraries/haskell/HDBC/HDBC-1.1.4.nix {
inherit cabal;
HDBC = import ../development/libraries/haskell/HDBC/HDBC.nix {
inherit cabal HUnit QuickCheck mtl time utf8String convertible testpack;
};
HDBCPostgresql = import ../development/libraries/haskell/HDBC/HDBC-postgresql-1.1.4.0.nix {
inherit cabal HDBC;
HDBCPostgresql = import ../development/libraries/haskell/HDBC/HDBC-postgresql.nix {
inherit cabal HDBC parsec;
inherit (pkgs) postgresql;
};
HDBCSqlite = import ../development/libraries/haskell/HDBC/HDBC-sqlite3-1.1.4.0.nix {
HDBCSqlite = import ../development/libraries/haskell/HDBC/HDBC-sqlite3.nix {
inherit cabal HDBC;
inherit (pkgs) sqlite;
};
@ -299,10 +304,19 @@ rec {
inherit (pkgs) ncurses;
};
testpack = import ../development/libraries/haskell/testpack {
inherit cabal HUnit QuickCheck mtl;
};
/* time is Haskell Platform default, time113 is more recent but incompatible */
time = import ../development/libraries/haskell/time {
inherit cabal;
};
time113 = import ../development/libraries/haskell/time/1.1.3.nix {
inherit cabal;
};
uniplate = import ../development/libraries/haskell/uniplate {
inherit cabal mtl;
};