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