Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10b6f23bb075
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a04104aebc98
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 23, 2020

  1. wireguard-go: fix executable name

    It's supposed to be `wireguard-go` instead of `wireguard`. Upstream does
    this right in their Makefile, however we use our own build-script which
    creates a wrong file in $out, so it has to be fixed in the
    `postInstall`-hook.
    
    Closes #88567
    Ma27 committed May 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    0f65693 View commit details
  2. Merge pull request #88610 from Ma27/wireguard-go

    wireguard-go: fix executable name
    flokli authored May 23, 2020
    Copy the full SHA
    a04104a View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/tools/networking/wireguard-go/default.nix
4 changes: 4 additions & 0 deletions pkgs/tools/networking/wireguard-go/default.nix
Original file line number Diff line number Diff line change
@@ -17,6 +17,10 @@ buildGoPackage rec {

passthru.updateScript = ./update.sh;

postInstall = ''
mv $out/bin/wireguard $out/bin/wireguard-go
'';

meta = with stdenv.lib; {
description = "Userspace Go implementation of WireGuard";
homepage = "https://git.zx2c4.com/wireguard-go/about/";