mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ca9e76e676
wg-quick calls iproute, resolvconf and sysctl on Linux. These dependencies where missing.
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, fetchzip, openresolv ? null, libmnl ? null, procps ? null, iproute ? null, makeWrapper ? null, wireguard-go ? null }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wireguard-tools-${version}";
|
|
version = "0.0.20181218";
|
|
|
|
src = fetchzip {
|
|
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
|
|
sha256 = "15lch0s4za7q5mr0dzdzwfsr7pr2i9gjygmpdnidwlx4z72vsajj";
|
|
};
|
|
|
|
sourceRoot = "source/src/tools";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = optional stdenv.isLinux libmnl;
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"PREFIX=/"
|
|
"WITH_BASHCOMPLETION=yes"
|
|
"WITH_SYSTEMDUNITS=yes"
|
|
"WITH_WGQUICK=yes"
|
|
];
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/lib/systemd/system/wg-quick@.service \
|
|
--replace /usr/bin $out/bin
|
|
'' + optionalString stdenv.isLinux ''
|
|
for f in $out/bin/*; do
|
|
wrapProgram $f --prefix PATH : ${makeBinPath [procps iproute openresolv]}
|
|
done
|
|
'' + optionalString stdenv.isDarwin ''
|
|
for f in $out/bin/*; do
|
|
wrapProgram $f --prefix PATH : ${wireguard-go}/bin
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tools for the WireGuard secure network tunnel";
|
|
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
|
|
homepage = https://www.wireguard.com/;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ ericsagnes mic92 zx2c4 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|