summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/HDBC/HDBC-odbc.nix
blob: cadf9e3e9c24669ddae75a3d5013b7bc1a9bad93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, HDBC, mtl, odbc, time, utf8String }:

cabal.mkDerivation (self: {
  pname = "HDBC-odbc";
  version = "2.3.1.1";
  sha256 = "0zypgwy8yxzp69c2775gkzi8591b0l3wncn7vmq11l16ign95fc7";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ HDBC mtl time utf8String ];
  extraLibraries = [ odbc ];
  noHaddock = true;
  meta = {
    homepage = "https://github.com/hdbc/hdbc-odbc";
    description = "ODBC driver for HDBC";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = with self.stdenv.lib.maintainers; [ ocharles ];
  };
})