2015-01-15 23:11:58 +01:00
|
|
|
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
2014-08-30 07:07:45 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-03-29 06:13:45 +02:00
|
|
|
version = "2.1.0.0";
|
2014-08-30 07:07:45 +02:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-networking-${version}";
|
|
|
|
|
2015-01-15 23:11:58 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6-networking";
|
|
|
|
rev = "refs/tags/v${version}";
|
2015-03-29 06:13:45 +02:00
|
|
|
sha256 = "057xwh1dpwg2dz47s0badqhi66nhxgs5ps0xwn7s6hvba0lwyy4c";
|
2014-08-30 07:07:45 +02:00
|
|
|
};
|
|
|
|
|
2014-12-23 17:06:27 +01:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2015-01-15 23:11:58 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 17:06:27 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-include=${execline}/include"
|
2015-01-15 23:11:58 +01:00
|
|
|
"--with-include=${s6}/include"
|
2014-12-23 17:06:27 +01:00
|
|
|
"--with-include=${s6Dns}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-lib=${execline}/lib"
|
2015-03-29 06:13:45 +02:00
|
|
|
"--with-lib=${s6}/lib/s6"
|
2014-12-23 17:06:27 +01:00
|
|
|
"--with-lib=${s6Dns}/lib"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${execline}/lib"
|
2015-01-15 23:11:58 +01:00
|
|
|
"--with-dynlib=${s6}/lib"
|
2014-12-23 17:06:27 +01:00
|
|
|
"--with-dynlib=${s6Dns}/lib"
|
|
|
|
];
|
2014-08-30 07:07:45 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6-networking/;
|
2014-11-11 14:20:43 +01:00
|
|
|
description = "A suite of small networking utilities for Unix systems";
|
2014-08-30 07:07:45 +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:07:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|