about summary refs log tree commit diff
path: root/pkgs/tools/networking/waitron
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-29 19:24:13 +0100
committerFelix Buehler <account@buehler.rocks>2021-11-30 21:11:29 +0100
commit22dffe27f394427505d1c9006dcb6aebc6b9f85b (patch)
tree6a83be474c2b7aa0d3fa41cb572df841da3ea0c7 /pkgs/tools/networking/waitron
parent4f6849f7c416bcaf48b349a33890d67713838ec1 (diff)
pkgs/tools: use pname&version instead of name
Diffstat (limited to 'pkgs/tools/networking/waitron')
-rw-r--r--pkgs/tools/networking/waitron/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/waitron/default.nix b/pkgs/tools/networking/waitron/default.nix
index 8364cd5763dc1..c37d82024fe6b 100644
--- a/pkgs/tools/networking/waitron/default.nix
+++ b/pkgs/tools/networking/waitron/default.nix
@@ -2,8 +2,8 @@
 { lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
 
 buildGoPackage rec {
-  name = "waitron-unstable-${version}";
-  version = "2020-01-24";
+  pname = "waitron";
+  version = "unstable-2020-01-24";
   rev = "c96833619cbb0cf2bc71b1d7b534101e139cc6e6";
 
   goPackagePath = "github.com/ns1/waitron";