nixpkgs/pkgs/development/libraries/haskell/HDBC/HDBC-sqlite3.nix
Peter Simons 3e10ee5c92 Updated Haskell expressions with the latest version of cabal2nix.
* haskell-dataenc: updated to version 0.14.0.2
 * haskell-fclabels: updated to version 1.0.1

svn path=/nixpkgs/trunk/; revision=28574
2011-08-14 22:52:05 +00:00

22 lines
624 B
Nix

{ cabal, HDBC, mtl, sqlite, utf8String }:
cabal.mkDerivation (self: {
pname = "HDBC-sqlite3";
version = "2.3.3.0";
sha256 = "11765nsncgyv9j6r5wpziqyhy0lxrmqbhgricbdx0c788ky75y92";
isLibrary = true;
isExecutable = true;
buildDepends = [ HDBC mtl utf8String ];
extraLibraries = [ sqlite ];
meta = {
homepage = "http://software.complete.org/hdbc-sqlite3";
description = "Sqlite v3 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
];
};
})