mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
powerdns: 4.2.3 -> 4.3.1
This commit is contained in:
parent
abcdffb6a2
commit
603f0dcae8
1 changed files with 5 additions and 6 deletions
|
@ -1,29 +1,28 @@
|
|||
{ stdenv, fetchurl, pkgconfig, nixosTests
|
||||
, boost, libyamlcpp, libsodium, sqlite, protobuf, openssl, systemd
|
||||
, mysql57, postgresql, lua, openldap, geoip, curl, opendbx, unixODBC
|
||||
, mysql57, postgresql, lua, openldap, geoip, curl, unixODBC
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "powerdns";
|
||||
version = "4.2.3";
|
||||
version = "4.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://downloads.powerdns.com/releases/pdns-${version}.tar.bz2";
|
||||
sha256 = "1vf03hssk9rfhvhzfc5ca2r4ly67wq0czr0ysvdrk8pnb0yk6yfi";
|
||||
sha256 = "0if27znz528sir52y9i4gcfhdsym7yxiwjgffy9lpscf1426q56m";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
boost mysql57.connector-c postgresql lua openldap sqlite protobuf geoip
|
||||
libyamlcpp libsodium curl opendbx unixODBC openssl systemd
|
||||
libyamlcpp libsodium curl unixODBC openssl systemd
|
||||
];
|
||||
|
||||
# nix destroy with-modules arguments, when using configureFlags
|
||||
preConfigure = ''
|
||||
configureFlagsArray=(
|
||||
"--with-modules=bind gmysql geoip godbc gpgsql gsqlite3 ldap lua mydns opendbx pipe random remote"
|
||||
"--with-modules=bind gmysql geoip godbc gpgsql gsqlite3 ldap lua2 pipe random remote"
|
||||
--with-sqlite3
|
||||
--with-socketdir=/var/lib/powerdns
|
||||
--with-libcrypto=${openssl.dev}
|
||||
--with-libsodium
|
||||
--enable-tools
|
||||
|
|
Loading…
Reference in a new issue