2015-01-15 22:11:20 +00:00
|
|
|
{ stdenv, fetchgit, skalibs }:
|
2014-08-30 06:06:42 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-11-12 22:39:09 +00:00
|
|
|
version = "2.2.0.1";
|
2014-08-30 06:06:42 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-dns-${version}";
|
|
|
|
|
2015-01-15 22:11:20 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6-dns";
|
|
|
|
rev = "refs/tags/v${version}";
|
2017-11-12 22:39:09 +00:00
|
|
|
sha256 = "10qvkh608nsx8gqs3pj4pb8aivwpshbmjw2766grgmrb35d31brl";
|
2014-08-30 06:06:42 +01:00
|
|
|
};
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
dontDisableStatic = true;
|
2014-08-30 06:06:42 +01:00
|
|
|
|
2015-01-15 22:11:20 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
configureFlags = [
|
2016-07-31 20:41:56 +01:00
|
|
|
"--enable-absolute-paths"
|
2014-12-23 16:06:27 +00:00
|
|
|
"--includedir=\${prefix}/include"
|
|
|
|
"--libdir=\${prefix}/lib"
|
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
2016-04-01 16:20:13 +01:00
|
|
|
]
|
|
|
|
++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ])
|
2017-03-26 23:30:41 +01:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
2014-08-30 06:06:42 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6-dns/;
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A suite of DNS client programs and libraries for Unix systems";
|
2014-08-30 06:06:42 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 21:16:51 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-30 06:06:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|