2015-01-15 22:11:58 +00:00
|
|
|
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
2014-08-30 05:07:45 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2016-03-30 16:15:20 +00:00
|
|
|
version = "2.1.0.4";
|
2014-08-30 05:07:45 +00: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}";
|
2016-06-02 11:26:44 +00:00
|
|
|
sha256 = "0rm0vpfshayhi5qwsvkgzdjmg43lvslp74h7lda964p72wr6gahg";
|
2014-08-30 05:07:45 +00: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 = [
|
|
|
|
"--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 04:13:45 +00: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 15:20:13 +00:00
|
|
|
]
|
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}");
|
2014-08-30 05:07:45 +00: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 05:07:45 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 20:16:51 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-30 05:07:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|