mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
09a5007797
The configure scripts have been changed so that `--build` is now the way to specify (non-cross compiling) build target, which is necessary on darwin for binary compatibility across darwin versions.
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, execline, fetchgit, s6, s6Dns, skalibs }:
|
|
|
|
let
|
|
|
|
version = "2.2.1.0";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "s6-networking-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.skarnet.org/s6-networking";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0msfssd42pdwch0z8rhrm7hd4ps9d730az92vg0pnz769xs8kjx0";
|
|
};
|
|
|
|
dontDisableStatic = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--enable-absolute-paths"
|
|
"--with-sysdeps=${skalibs}/lib/skalibs/sysdeps"
|
|
"--with-include=${skalibs}/include"
|
|
"--with-include=${execline}/include"
|
|
"--with-include=${s6}/include"
|
|
"--with-include=${s6Dns}/include"
|
|
"--with-lib=${skalibs}/lib"
|
|
"--with-lib=${execline}/lib"
|
|
"--with-lib=${s6}/lib/s6"
|
|
"--with-lib=${s6Dns}/lib"
|
|
"--with-dynlib=${skalibs}/lib"
|
|
"--with-dynlib=${execline}/lib"
|
|
"--with-dynlib=${s6}/lib"
|
|
"--with-dynlib=${s6Dns}/lib"
|
|
]
|
|
++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
|
|
|
|
meta = {
|
|
homepage = http://www.skarnet.org/software/s6-networking/;
|
|
description = "A suite of small networking utilities for Unix systems";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.isc;
|
|
maintainers = with stdenv.lib.maintainers; [ pmahoney ];
|
|
};
|
|
|
|
}
|