summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC.nix
blob: abfa0aea85bf86d36ce9096638f29b5c6d66b886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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";
  };
})