2015-01-15 22:10:07 +00:00
|
|
|
{ stdenv, execline, fetchgit, skalibs }:
|
2014-08-23 04:42:13 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2018-07-27 07:09:12 +00:00
|
|
|
version = "2.7.1.1";
|
2014-08-23 04:42:13 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name = "s6-${version}";
|
|
|
|
|
2015-01-15 22:10:07 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.skarnet.org/s6";
|
|
|
|
rev = "refs/tags/v${version}";
|
2018-07-27 07:09:12 +00:00
|
|
|
sha256 = "0dncw3h9wc4cgc9q8zjwicgbcqcn6722yhk8g9bvrhs7h4fkfqav";
|
2014-08-23 04:42:13 +00:00
|
|
|
};
|
|
|
|
|
2018-07-22 15:03:19 +00:00
|
|
|
# NOTE lib: cannot split lib from bin at the moment,
|
|
|
|
# since some parts of lib depend on executables in bin.
|
|
|
|
# (the `*_startf` functions in `libs6`)
|
|
|
|
|
|
|
|
outputs = [ /*"bin" "lib"*/ "out" "dev" "doc" ];
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
dontDisableStatic = true;
|
2014-08-23 04:42:13 +00:00
|
|
|
|
2015-01-15 22:10:07 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-12-23 16:06:27 +00:00
|
|
|
configureFlags = [
|
2016-07-31 19:41:56 +00:00
|
|
|
"--enable-absolute-paths"
|
2018-07-22 15:03:19 +00:00
|
|
|
"--libdir=\${out}/lib"
|
|
|
|
"--libexecdir=\${out}/libexec"
|
|
|
|
"--dynlibdir=\${out}/lib"
|
|
|
|
"--bindir=\${out}/bin"
|
|
|
|
"--includedir=\${dev}/include"
|
|
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
|
|
"--with-include=${skalibs.dev}/include"
|
|
|
|
"--with-include=${execline.dev}/include"
|
|
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
|
|
"--with-lib=${execline.lib}/lib"
|
|
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
|
|
"--with-dynlib=${execline.lib}/lib"
|
2016-04-01 15:20:13 +00:00
|
|
|
]
|
|
|
|
++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ])
|
2017-03-26 22:30:41 +00:00
|
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
2014-08-23 04:42:13 +00:00
|
|
|
|
2018-07-22 15:03:19 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $doc/share/doc/s6/
|
|
|
|
mv doc $doc/share/doc/s6/html
|
|
|
|
mv examples $doc/share/doc/s6/examples
|
|
|
|
'';
|
|
|
|
|
2014-08-23 04:42:13 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.skarnet.org/software/s6/;
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "skarnet.org's small & secure supervision software suite";
|
2014-08-23 04:42:13 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2018-07-22 19:44:10 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney Profpatsch ];
|
2014-08-23 04:42:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|