2015-01-16 01:10:07 +03:00
|
|
|
{ stdenv, execline, fetchgit, skalibs }:
|
2014-08-23 08:42:13 +04:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-11-13 01:39:09 +03:00
|
|
|
version = "2.6.1.1";
|
2014-08-23 08:42:13 +04:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-${version}";
|
|
|
|
|
2015-01-16 01:10:07 +03:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6";
|
|
|
|
rev = "refs/tags/v${version}";
|
2017-11-13 01:39:09 +03:00
|
|
|
sha256 = "162hng8xcwjp8pr4d78zq3f82lm9c6ldbcfll0mjsmnxdds5hrsg";
|
2014-08-23 08:42:13 +04:00
|
|
|
};
|
|
|
|
|
2014-12-23 19:06:27 +03:00
|
|
|
dontDisableStatic = true;
|
2014-08-23 08:42:13 +04:00
|
|
|
|
2015-01-16 01:10:07 +03:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 19:06:27 +03:00
|
|
|
configureFlags = [
|
2016-07-31 22:41:56 +03:00
|
|
|
"--enable-absolute-paths"
|
2014-12-23 19:06:27 +03:00
|
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs}/include"
|
|
|
|
"--with-include=${execline}/include"
|
|
|
|
"--with-lib=${skalibs}/lib"
|
|
|
|
"--with-lib=${execline}/lib"
|
|
|
|
"--with-dynlib=${skalibs}/lib"
|
|
|
|
"--with-dynlib=${execline}/lib"
|
2016-04-01 18:20:13 +03:00
|
|
|
]
|
|
|
|
++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ])
|
2017-03-27 01:30:41 +03:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
2014-08-23 08:42:13 +04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6/;
|
2014-11-11 16:20:43 +03:00
|
|
|
description = "skarnet.org's small & secure supervision software suite";
|
2014-08-23 08:42:13 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2015-06-01 23:16:51 +03:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
2014-08-23 08:42:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|