nixpkgs/pkgs/development/libraries/haskell/HDBC/HDBC.nix
Andres Löh 97ad35b531 Version bump for HDBC.
svn path=/nixpkgs/trunk/; revision=15946
2009-06-12 13:39:05 +00:00

13 lines
442 B
Nix

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