aboutsummaryrefslogtreecommitdiff
path: root/nix/wesher.nix
blob: 81be05522d58fcf47357d6162d273031ef184821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgs:
pkgs.buildGoModule rec {
  pname = "wesher";
  version = "0.2.6";

  src = pkgs.fetchFromGitHub {
    owner = "costela";
    repo = "wesher";
    rev = "v${version}";
    sha256 = "1fnclr556avxay6pvgw5ya3xbxfnf2gv4njq2hr4fd6fcjyslq5h";
  };

  vendorSha256 = null;

  checkPhase = "true";

  meta = with pkgs.lib; {
    description = "wireguard overlay mesh network manager";
    homepage = "https://github.com/costela/wesher";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
  };
}