mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
9f4a461278
execline: 2.2.0.0 -> 2.3.0.3 s6: 2.4.0.0 -> 2.6.1.1 s6-dns: 2.1.0.0 -> 2.2.0.1 s6-linux-utils: 2.2.0.0 -> 2.4.0.2 s6-networking: 2.2.1.0 -> 2.3.0.2 s6-portable-utils: 2.1.0.0 -> 2.2.1.1 s6-rc: 0.1.0.0 -> 0.3.0.0 skalibs: 2.4.0.1 -> 2.6.0.1
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, execline, fetchgit, skalibs }:
|
|
|
|
let
|
|
|
|
version = "2.6.1.1";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "s6-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/s6";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "162hng8xcwjp8pr4d78zq3f82lm9c6ldbcfll0mjsmnxdds5hrsg";
|
|
};
|
|
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--enable-absolute-paths"
|
|
"--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"
|
|
]
|
|
++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ])
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
|
|
|
meta = {
|
|
homepage = http://www.skarnet.org/software/s6/;
|
|
description = "skarnet.org's small & secure supervision software suite";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.isc;
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
|
};
|
|
|
|
}
|