mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
695 B
Nix
23 lines
695 B
Nix
{ stdenv, fetchurl, cxxtools, postgresql, mysql, sqlite, zlib, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.3";
|
|
name = "tntdb";
|
|
src = fetchurl {
|
|
url = "http://www.tntnet.org/download/tntdb-${version}.tar.gz";
|
|
sha256 = "0js79dbvkic30bzw1pf26m64vs2ssw2sbj55w1dc0sy69dlv4fh9";
|
|
};
|
|
|
|
buildInputs = [ cxxtools postgresql mysql.connector-c sqlite zlib openssl ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.tntnet.org/tntdb.html;
|
|
description = "C++ library which makes accessing SQL databases easy and robust";
|
|
platforms = platforms.linux ;
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.juliendehos ];
|
|
};
|
|
}
|