mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
72 lines
2.2 KiB
Nix
72 lines
2.2 KiB
Nix
{ lib, skawarePackages, skalibs, execline, s6, s6-dns
|
|
|
|
# Whether to build the TLS/SSL tools and what library to use
|
|
# acceptable values: "bearssl", "libressl", false
|
|
, sslSupport ? "bearssl" , libressl, bearssl
|
|
}:
|
|
|
|
let
|
|
sslSupportEnabled = sslSupport != false;
|
|
sslLibs = {
|
|
libressl = libressl;
|
|
bearssl = bearssl;
|
|
};
|
|
|
|
in
|
|
assert sslSupportEnabled -> sslLibs ? ${sslSupport};
|
|
|
|
|
|
skawarePackages.buildPackage {
|
|
pname = "s6-networking";
|
|
version = "2.7.0.3";
|
|
sha256 = "20EcVDcaF+19RUPdhs+VMM4l/PYkvvg64rV5Ug5ecL8=";
|
|
|
|
manpages = skawarePackages.buildManPages {
|
|
pname = "s6-networking-man-pages";
|
|
version = "2.7.0.3.1";
|
|
sha256 = "9u2C1TF9vma+7Qo+00uZ6eOCn/9eMgKALgHDVgMcrfg=";
|
|
description = "Port of the documentation for the s6-networking suite to mdoc";
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
|
};
|
|
|
|
description = "Suite of small networking utilities for Unix systems";
|
|
|
|
outputs = [ "bin" "lib" "dev" "doc" "out" ];
|
|
|
|
# TODO: nsss support
|
|
configureFlags = [
|
|
"--libdir=\${lib}/lib"
|
|
"--libexecdir=\${lib}/libexec"
|
|
"--dynlibdir=\${lib}/lib"
|
|
"--bindir=\${bin}/bin"
|
|
"--includedir=\${dev}/include"
|
|
"--with-sysdeps=${skalibs.lib}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs.dev}/include"
|
|
"--with-include=${execline.dev}/include"
|
|
"--with-include=${s6.dev}/include"
|
|
"--with-include=${s6-dns.dev}/include"
|
|
"--with-lib=${skalibs.lib}/lib"
|
|
"--with-lib=${execline.lib}/lib"
|
|
"--with-lib=${s6.out}/lib"
|
|
"--with-lib=${s6-dns.lib}/lib"
|
|
"--with-dynlib=${skalibs.lib}/lib"
|
|
"--with-dynlib=${execline.lib}/lib"
|
|
"--with-dynlib=${s6.out}/lib"
|
|
"--with-dynlib=${s6-dns.lib}/lib"
|
|
]
|
|
++ (lib.optionals sslSupportEnabled [
|
|
"--enable-ssl=${sslSupport}"
|
|
"--with-include=${lib.getDev sslLibs.${sslSupport}}/include"
|
|
"--with-lib=${lib.getLib sslLibs.${sslSupport}}/lib"
|
|
"--with-dynlib=${lib.getLib sslLibs.${sslSupport}}/lib"
|
|
]);
|
|
|
|
postInstall = ''
|
|
# remove all s6 executables from build directory
|
|
rm $(find -name "s6-*" -type f -mindepth 1 -maxdepth 1 -executable)
|
|
rm libs6net.* libstls.* libs6tls.* libsbearssl.*
|
|
|
|
mv doc $doc/share/doc/s6-networking/html
|
|
'';
|
|
|
|
}
|