2015-01-15 22:11:58 +00:00
|
|
|
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
2014-08-30 06:07:45 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-11-12 22:39:09 +00:00
|
|
|
version = "2.3.0.2";
|
2014-08-30 06:07:45 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-networking-${version}";
|
|
|
|
|
2015-01-15 22:11:58 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6-networking";
|
|
|
|
rev = "refs/tags/v${version}";
|
2017-11-12 22:39:09 +00:00
|
|
|
sha256 = "1qrhca8yjaysrqf7nx3yjfyfi9yly3rxpgrd2sqj0a0ckk73rv42";
|
2014-08-30 06:07:45 +01:00
|
|
|
};
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2015-01-15 22:11:58 +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
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-include=${execline}/include"
|
2015-01-15 22:11:58 +00:00
|
|
|
"--with-include=${s6}/include"
|
2014-12-23 16:06:27 +00:00
|
|
|
"--with-include=${s6Dns}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-lib=${execline}/lib"
|
2015-03-29 05:13:45 +01:00
|
|
|
"--with-lib=${s6}/lib/s6"
|
2014-12-23 16:06:27 +00:00
|
|
|
"--with-lib=${s6Dns}/lib"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${execline}/lib"
|
2015-01-15 22:11:58 +00:00
|
|
|
"--with-dynlib=${s6}/lib"
|
2014-12-23 16:06:27 +00:00
|
|
|
"--with-dynlib=${s6Dns}/lib"
|
2016-04-01 16:20:13 +01:00
|
|
|
]
|
2017-03-26 23:30:41 +01:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
2014-08-30 06:07:45 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6-networking/;
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A suite of small networking utilities for Unix systems";
|
2014-08-30 06:07:45 +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:07:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|