aboutsummaryrefslogtreecommitdiff
path: root/nix/wesher.nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-08-23 23:55:15 +0200
committerAlex Auvolat <alex@adnab.me>2022-08-23 23:55:15 +0200
commitab901fc81d483f24334680a53cacd6b981bb37a7 (patch)
treef104754d49f5c4f09eea34aef3945c9564c1f4df /nix/wesher.nix
parenta7ac31cdf52b7042cef86f4e04cde96cbc36711f (diff)
downloadnixcfg-ab901fc81d483f24334680a53cacd6b981bb37a7.tar.gz
nixcfg-ab901fc81d483f24334680a53cacd6b981bb37a7.zip
Remove wesher, reconfigure staging without it
Diffstat (limited to 'nix/wesher.nix')
-rw-r--r--nix/wesher.nix25
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;
- };
- };
-}