2015-01-15 22:11:58 +00:00
|
|
|
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
2014-08-30 06:07:45 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-06-01 21:19:11 +01:00
|
|
|
version = "2.1.0.1";
|
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}";
|
2015-06-01 21:19:11 +01:00
|
|
|
sha256 = "0jdjxwqrp7lzdb85sp1gdkm7s478wyl7wqxb3jfxflgh2bgdgvy2";
|
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 = [
|
|
|
|
"--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"
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|