nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

psqlodbc: 09.01.0200 -> 13.00.0000

+8 -4
+8 -4
pkgs/development/libraries/psqlodbc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "psqlodbc"; 5 - version = "09.01.0200"; 5 + version = "13.02.0000"; 6 6 7 7 src = fetchurl { 8 - url = "https://ftp.postgresql.org/pub/odbc/versions/src/${pname}-${version}.tar.gz"; 9 - sha256 = "0b4w1ahfpp34jpscfk2kv9050lh3xl9pvcysqvaigkcd0vsk1hl9"; 8 + url = "https://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-${version}.tar.gz"; 9 + hash = "sha256-s5t+XEH9ZHXFUREvpyS/V8SkRhdexBiKkOKETMFhJYU="; 10 10 }; 11 11 12 12 buildInputs = [ libiodbc postgresql openssl ]; 13 13 14 - configureFlags = [ "--with-iodbc=${libiodbc}" ]; 14 + configureFlags = [ 15 + "--with-iodbc=${libiodbc}" 16 + "--with-libpq=${lib.getDev postgresql}/bin/pg_config" 17 + ]; 15 18 16 19 meta = with lib; { 17 20 homepage = "https://odbc.postgresql.org/"; 18 21 description = "ODBC driver for PostgreSQL"; 19 22 license = licenses.lgpl2; 20 23 platforms = platforms.linux; 24 + maintainers = with maintainers; [ ]; 21 25 }; 22 26 }