2021-03-15 02:42:37 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-04-25 12:03:30 +02:00
|
|
|
, fetchzip
|
|
|
|
, nixosTests
|
2021-03-15 02:42:37 +01:00
|
|
|
, iptables
|
2021-03-14 17:05:16 +01:00
|
|
|
, iproute2
|
2021-03-15 02:42:37 +01:00
|
|
|
, makeWrapper
|
|
|
|
, openresolv
|
|
|
|
, procps
|
|
|
|
, wireguard-go
|
2019-07-06 21:14:58 +02:00
|
|
|
}:
|
2018-05-18 23:52:41 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-06 21:14:58 +02:00
|
|
|
pname = "wireguard-tools";
|
2021-05-11 22:58:27 +02:00
|
|
|
version = "1.0.20210424";
|
2018-05-18 23:52:41 +02:00
|
|
|
|
2018-05-19 12:08:04 +02:00
|
|
|
src = fetchzip {
|
2019-12-27 16:48:06 +01:00
|
|
|
url = "https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-${version}.tar.xz";
|
2021-05-11 22:58:27 +02:00
|
|
|
sha256 = "sha256-0aGaE4EBb4wb5g32Wugakt7w41sb97Hqqkac7qE641M=";
|
2018-05-18 23:52:41 +02:00
|
|
|
};
|
|
|
|
|
2020-03-20 00:51:01 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2019-12-27 16:48:06 +01:00
|
|
|
sourceRoot = "source/src";
|
2018-05-18 23:52:41 +02:00
|
|
|
|
2018-12-29 16:41:04 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2018-05-18 23:52:41 +02:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX=/"
|
2018-05-22 03:17:09 +02:00
|
|
|
"WITH_BASHCOMPLETION=yes"
|
|
|
|
"WITH_SYSTEMDUNITS=yes"
|
|
|
|
"WITH_WGQUICK=yes"
|
2018-05-18 23:52:41 +02:00
|
|
|
];
|
|
|
|
|
2018-05-22 03:17:09 +02:00
|
|
|
postFixup = ''
|
2018-05-18 23:52:41 +02:00
|
|
|
substituteInPlace $out/lib/systemd/system/wg-quick@.service \
|
|
|
|
--replace /usr/bin $out/bin
|
2021-03-15 02:42:37 +01:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2018-12-29 16:41:04 +01:00
|
|
|
for f in $out/bin/*; do
|
2021-03-14 17:05:16 +01:00
|
|
|
wrapProgram $f --prefix PATH : ${lib.makeBinPath [ procps iproute2 iptables openresolv ]}
|
2018-12-29 16:41:04 +01:00
|
|
|
done
|
2021-03-15 02:42:37 +01:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2018-05-22 03:17:09 +02:00
|
|
|
for f in $out/bin/*; do
|
|
|
|
wrapProgram $f --prefix PATH : ${wireguard-go}/bin
|
|
|
|
done
|
2018-05-18 23:52:41 +02:00
|
|
|
'';
|
|
|
|
|
2020-04-25 12:03:30 +02:00
|
|
|
passthru = {
|
|
|
|
updateScript = ./update.sh;
|
2020-04-26 14:24:18 +02:00
|
|
|
tests = nixosTests.wireguard;
|
2020-04-25 12:03:30 +02:00
|
|
|
};
|
2019-06-01 22:17:25 +02:00
|
|
|
|
2021-03-15 02:42:37 +01:00
|
|
|
meta = with lib; {
|
2018-05-22 03:17:09 +02:00
|
|
|
description = "Tools for the WireGuard secure network tunnel";
|
2019-12-27 16:48:06 +01:00
|
|
|
downloadPage = "https://git.zx2c4.com/wireguard-tools/refs/";
|
2019-07-06 21:14:58 +02:00
|
|
|
homepage = "https://www.wireguard.com/";
|
2018-05-22 03:17:09 +02:00
|
|
|
license = licenses.gpl2;
|
2019-12-27 16:48:06 +01:00
|
|
|
maintainers = with maintainers; [ elseym ericsagnes mic92 zx2c4 globin ma27 xwvvvvwx ];
|
2018-05-22 03:17:09 +02:00
|
|
|
platforms = platforms.unix;
|
2018-05-18 23:52:41 +02:00
|
|
|
};
|
|
|
|
}
|