summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-03-13 17:27:23 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-03-13 21:20:49 -0300
commit638efbf778c49ec60e636d2c9d35d459a3dfe0df (patch)
tree3ce3552cbe0f5903794976e6a4ad370463903989 /pkgs/tools/networking
parentde6c0f0ff7cd6e0a9337a4ac20b76a9108f1b25d (diff)
downloadnixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar.gz
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar.bz2
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar.lz
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar.xz
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.tar.zst
nixpkgs-638efbf778c49ec60e636d2c9d35d459a3dfe0df.zip
wakelan: ibiblioPubLinux mirror
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/wakelan/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/tools/networking/wakelan/default.nix b/pkgs/tools/networking/wakelan/default.nix
index 5365e696fad..7e9bcc1a70c 100644
--- a/pkgs/tools/networking/wakelan/default.nix
+++ b/pkgs/tools/networking/wakelan/default.nix
@@ -5,8 +5,8 @@ stdenv.mkDerivation rec {
   version = "1.1";
 
   src = fetchurl {
-    url = "mirror://metalab/system/network/misc/wakelan-${version}.tar.gz";
-    sha256 = "0vydqpf44146ir6k87gmqaq6xy66xhc1gkr3nsd7jj3nhy7ypx9x";
+    url = "mirror://ibiblioPubLinux/system/network/misc/${pname}-${version}.tar.gz";
+    hash = "sha256-PfXrj4d2SHmatiPPFxjsxvhusML1HTRNjoYEQtzFzW8=";
   };
 
   preInstall = ''
@@ -15,15 +15,12 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Send a wake-on-lan packet";
-
-    longDescription =
-      '' WakeLan sends a properly formatted UDP packet across the
-         network which will cause a wake-on-lan enabled computer to
-         power on.
-      '';
-
+    longDescription = ''
+      WakeLan sends a properly formatted UDP packet across the
+      network which will cause a wake-on-lan enabled computer to
+      power on.
+   '';
     license = lib.licenses.gpl2Plus;
-
     maintainers = [ lib.maintainers.viric ];
     platforms = lib.platforms.unix;
   };