python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / wireguard-tools / default.nix
blob6430eeeb0b752eb6964c14e123adf5f6baa6ace0
1 { lib
2 , stdenv
3 , fetchzip
4 , nixosTests
5 , iptables
6 , iproute2
7 , makeWrapper
8 , openresolv
9 , procps
12 stdenv.mkDerivation rec {
13   pname = "wireguard-tools";
14   version = "1.0.20210914";
16   src = fetchzip {
17     url = "https://git.zx2c4.com/wireguard-tools/snapshot/wireguard-tools-${version}.tar.xz";
18     sha256 = "sha256-eGGkTVdPPTWK6iEyowW11F4ywRhd+0IXJTZCqY3OZws=";
19   };
21   outputs = [ "out" "man" ];
23   sourceRoot = "source/src";
25   nativeBuildInputs = [ makeWrapper ];
27   makeFlags = [
28     "DESTDIR=$(out)"
29     "PREFIX=/"
30     "WITH_BASHCOMPLETION=yes"
31     "WITH_SYSTEMDUNITS=yes"
32     "WITH_WGQUICK=yes"
33   ];
35   postFixup = ''
36     substituteInPlace $out/lib/systemd/system/wg-quick@.service \
37       --replace /usr/bin $out/bin
38   '' + lib.optionalString stdenv.isLinux ''
39     for f in $out/bin/*; do
40       # allow users to provide their own resolvconf implementation, e.g. the one provided by systemd-resolved
41       wrapProgram $f \
42         --prefix PATH : ${lib.makeBinPath [ procps iproute2 iptables ]} \
43         --suffix PATH : ${lib.makeBinPath [ openresolv ]}
44     done
45   '';
47   passthru = {
48     updateScript = ./update.sh;
49     tests = nixosTests.wireguard;
50   };
52   meta = with lib; {
53     description = "Tools for the WireGuard secure network tunnel";
54     longDescription = ''
55       Supplies the main userspace tooling for using and configuring WireGuard tunnels, including the wg(8) and wg-quick(8) utilities.
56       - wg : the configuration utility for getting and setting the configuration of WireGuard tunnel interfaces. The interfaces
57         themselves can be added and removed using ip-link(8) and their IP addresses and routing tables can be set using ip-address(8)
58         and ip-route(8). The wg utility provides a series of sub-commands for changing WireGuard-specific aspects of WireGuard interfaces.
59       - wg-quick : an extremely simple script for easily bringing up a WireGuard interface, suitable for a few common use cases.
60     '';
61     downloadPage = "https://git.zx2c4.com/wireguard-tools/refs/";
62     homepage = "https://www.wireguard.com/";
63     license = licenses.gpl2;
64     maintainers = with maintainers; [ ericsagnes zx2c4 globin ma27 d-xo ];
65     platforms = platforms.unix;
66   };