aboutsummaryrefslogblamecommitdiff
path: root/nix/wesher.nix
blob: 81be05522d58fcf47357d6162d273031ef184821 (plain) (tree)






















                                                                    
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;
  };
}