summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC-odbc.nix
blob: 0b918dc4c85312b6debff9b74e0c0bdce4b75a5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ cabal, HDBC, mtl, odbc, time, utf8String }:

cabal.mkDerivation (self: {
  pname = "HDBC-odbc";
  version = "2.3.1.0";
  sha256 = "0vza38ggs863wjh25xnwslwlin68166ywws72bs766rl0rq7fkf4";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ HDBC mtl time utf8String ];
  extraLibraries = [ odbc ];
  noHaddock = true;
  meta = {
    homepage = "http://software.complete.org/hdbc-odbc";
    description = "ODBC driver for HDBC";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})