guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add swayidle.


From: guix-commits
Subject: 03/04: gnu: Add swayidle.
Date: Mon, 11 Mar 2019 15:29:27 -0400 (EDT)

rhelling pushed a commit to branch master
in repository guix.

commit 06ae5efcf385312faec3e6280786bc7b4aa63978
Author: Rutger Helling <address@hidden>
Date:   Mon Mar 11 20:19:41 2019 +0100

    gnu: Add swayidle.
    
    * gnu/packages/wm.scm (swayidle): New variable.
---
 gnu/packages/wm.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index fedea67..fe4e0f4 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1198,3 +1198,26 @@ modules for building a Wayland compositor.")
     (synopsis "Wayland compositor compatible with i3")
     (description "Sway is a i3-compatible Wayland compositor.")
     (license license:expat)))       ; MIT license
+
+(define-public swayidle
+  (package
+    (name "swayidle")
+    (version "1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/swaywm/swayidle.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0b65flajwn2i6k2kdxxgw25w7ikzzmm595f4j5x1wac1rb0yah9w"))))
+    (build-system meson-build-system)
+    (inputs `(("wayland" ,wayland)))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("scdoc" ,scdoc)
+                     ("wayland-protocols" ,wayland-protocols)))
+    (home-page "https://github.com/swaywm/sway";)
+    (synopsis "Idle management daemon for Wayland compositors")
+    (description "Swayidle is a idle management daemon for Wayland 
compositors.")
+    (license license:expat))) ; MIT license



reply via email to

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