Added HDBC-odbc.
svn path=/nixpkgs/trunk/; revision=28975
This commit is contained in:
parent
e8c849f8e3
commit
33afa20575
22
pkgs/development/libraries/haskell/HDBC/HDBC-odbc.nix
Normal file
22
pkgs/development/libraries/haskell/HDBC/HDBC-odbc.nix
Normal file
@ -0,0 +1,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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
@ -700,6 +700,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
|
|
||||||
HDBC = callPackage ../development/libraries/haskell/HDBC/HDBC.nix {};
|
HDBC = callPackage ../development/libraries/haskell/HDBC/HDBC.nix {};
|
||||||
|
|
||||||
|
HDBCOdbc = callPackage ../development/libraries/haskell/HDBC/HDBC-odbc.nix {
|
||||||
|
odbc = pkgs.unixODBC;
|
||||||
|
};
|
||||||
|
|
||||||
HDBCPostgresql = callPackage ../development/libraries/haskell/HDBC/HDBC-postgresql.nix {
|
HDBCPostgresql = callPackage ../development/libraries/haskell/HDBC/HDBC-postgresql.nix {
|
||||||
inherit (pkgs) postgresql;
|
inherit (pkgs) postgresql;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user