diff options
author | Alex Auvolat <alex@adnab.me> | 2022-08-23 23:55:15 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-08-23 23:55:15 +0200 |
commit | ab901fc81d483f24334680a53cacd6b981bb37a7 (patch) | |
tree | f104754d49f5c4f09eea34aef3945c9564c1f4df /nix/wesher.nix | |
parent | a7ac31cdf52b7042cef86f4e04cde96cbc36711f (diff) | |
download | nixcfg-ab901fc81d483f24334680a53cacd6b981bb37a7.tar.gz nixcfg-ab901fc81d483f24334680a53cacd6b981bb37a7.zip |
Remove wesher, reconfigure staging without it
Diffstat (limited to 'nix/wesher.nix')
-rw-r--r-- | nix/wesher.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/nix/wesher.nix b/nix/wesher.nix deleted file mode 100644 index c39a3e6..0000000 --- a/nix/wesher.nix +++ /dev/null @@ -1,25 +0,0 @@ -self: super: -{ - wesher = super.buildGoModule rec { - pname = "wesher"; - version = "0.2.6"; - - src = super.fetchFromGitHub { - owner = "costela"; - repo = "wesher"; - rev = "v${version}"; - sha256 = "1iagmnw2yf15r0fpikk610w0lm0gcxw83lcwfjyr2jv1q2ys71hh"; - }; - - vendorSha256 = "0nyg0wzn8d4rzjs8yrxxj3gha94043ll80s1ql0fml025q2f3705"; - - checkPhase = "true"; - - meta = with super.lib; { - description = "wireguard overlay mesh network manager"; - homepage = "https://github.com/costela/wesher"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - }; - }; -} |