lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v206 26 lines 649 B view raw
1{ lib, stdenv, fetchurl, postgresql, python }: 2 3stdenv.mkDerivation rec { 4 name = "libpqxx-4.0.1"; 5 6 src = fetchurl { 7 url = "http://pqxx.org/download/software/libpqxx/${name}.tar.gz"; 8 sha256 = "0f6wxspp6rx12fkasanb0z2g2gc8dhcfwnxagx8wwqbpg6ifsz09"; 9 }; 10 11 buildInputs = [ postgresql python ]; 12 13 preConfigure = '' 14 patchShebangs . 15 ''; 16 17 configureFlags = "--enable-shared"; 18 19 meta = { 20 description = "A C++ library to access PostgreSQL databases"; 21 homepage = http://pqxx.org/development/libpqxx/; 22 license = lib.licenses.postgresql; 23 platforms = lib.platforms.linux; 24 maintainers = [ lib.maintainers.eelco ]; 25 }; 26}