mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
b6c1781e58
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wireguard-tools/versions. These checks were done: - built on NixOS - /nix/store/mr991d4pyvfng5bhh06kdlb29mj93cf3-wireguard-tools-0.0.20180524/bin/wg passed the binary check. - /nix/store/mr991d4pyvfng5bhh06kdlb29mj93cf3-wireguard-tools-0.0.20180524/bin/wg-quick passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 0 of 2 passed binary check by having the new version present in output. - found 0.0.20180524 with grep in /nix/store/mr991d4pyvfng5bhh06kdlb29mj93cf3-wireguard-tools-0.0.20180524 - directory tree listing: https://gist.github.com/52b47d18275b1b4550ccdd7bfdd16ef0 - du listing: https://gist.github.com/074aac4bf75c6a0a31e18b04cb0ffbc8
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ stdenv, fetchzip, libmnl ? null, makeWrapper ? null, wireguard-go ? null }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wireguard-tools-${version}";
|
|
version = "0.0.20180524";
|
|
|
|
src = fetchzip {
|
|
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
|
|
sha256 = "0h503h9hh1vl3j2daz7lm2fp4wda65iphmx8k21md6yql8f56vmi";
|
|
};
|
|
|
|
sourceRoot = "source/src/tools";
|
|
|
|
nativeBuildInputs = [ (optional stdenv.isDarwin 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.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;
|
|
};
|
|
}
|