guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add wol.


From: guix-commits
Subject: branch master updated: gnu: Add wol.
Date: Sat, 28 Mar 2020 19:06:26 -0400

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 62b9ad1  gnu: Add wol.
62b9ad1 is described below

commit 62b9ad19e3a6638f8e077753454fdf08ba586146
Author: Vincent Legoll <address@hidden>
AuthorDate: Tue Mar 17 16:04:51 2020 +0100

    gnu: Add wol.
    
    * gnu/packages/networking.scm (wol): New public variable.
    
    Signed-off-by: Jakub Kądziołka <address@hidden>
---
 gnu/packages/networking.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 6a7b073..ec2f0b6 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2908,6 +2908,24 @@ Such interfaces are useful for VPN software, 
virtualization, emulation,
 simulation, and a number of other applications.")
     (license license:gpl2)))
 
+(define-public wol
+  (package
+    (name "wol")
+    (version "0.7.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://sourceforge/wake-on-lan/wol/"
+                           version "/wol-" version ".tar.gz"))
+       (sha256
+        (base32 "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270"))))
+    (build-system gnu-build-system)
+    (home-page "https://sourceforge.net/projects/wake-on-lan/";)
+    (synopsis "Implements Wake On LAN functionality in a small program")
+    (description "Tool to send a magic packet to wake another host on the
+network.  This must be enabled on the target host, usually in the BIOS.")
+    (license license:gpl2)))
+
 (define-public vde2
   (package
     (name "vde2")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]