guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: guile-wm: Update to 1.0-1.f3c7b3b.


From: Kei Kebreau
Subject: 02/05: gnu: guile-wm: Update to 1.0-1.f3c7b3b.
Date: Thu, 7 Dec 2017 11:34:20 -0500 (EST)

kkebreau pushed a commit to branch master
in repository guix.

commit 7b45392616ad5842c278441cb8443febefccc6ae
Author: ng0 <address@hidden>
Date:   Mon Dec 4 21:48:44 2017 +0000

    gnu: guile-wm: Update to 1.0-1.f3c7b3b.
    
    * gnu/packages/guile-wm.scm (guile-xcb): Update to 1.0-1.f3c7b3b.
    (version): Use git-version.
    (source): Switch to git-fetch.
    (native-inputs): Add texinfo.
    (home-page): Update to new location.
    
    Signed-off-by: Kei Kebreau <address@hidden>
---
 gnu/packages/guile-wm.scm | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/guile-wm.scm b/gnu/packages/guile-wm.scm
index 7a810ad..7f30266 100644
--- a/gnu/packages/guile-wm.scm
+++ b/gnu/packages/guile-wm.scm
@@ -71,18 +71,21 @@ dependencies.")
     (license gpl3+))))
 
 (define-public guile-wm
+  (let ((commit "f3c7b3be719f425ffb87265d34855a73366351be")
+        (revision "1"))
   (package
     (name "guile-wm")
-    (version "1.0")
+    (version (git-version "1.0" revision commit))
     (synopsis "X11 window manager toolkit in Scheme")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "http://web.archive.org/web/20161005084324/";
-                                  "http://www.markwitmer.com/dist/guile-wm-";
-                                  version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mwitmer/guile-wm";)
+                    (commit commit)))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "1l9qcz236jxvryndimjy62cf8zxf8i3f8vg3zpqqjhw15j9mdk3r"))))
+                "086dijnpl5dpglf70d6f9sizyakr313y7blpdjrmbi687j1x3qcl"))))
     (build-system gnu-build-system)
     (arguments
      `( ;; The '.scm' files go to $(datadir), so set that to the
@@ -135,14 +138,15 @@ dependencies.")
                                     Type=Application~%"
                           ,name ,synopsis %output))))
              #t)))))
-    (native-inputs `(("pkg-config" ,pkg-config)))
+    (native-inputs `(("pkg-config" ,pkg-config)
+                     ("texinfo" ,texinfo)))
     (inputs `(("guile" ,guile-2.0)
               ("guile-xcb" ,guile-xcb)))
-    (home-page "http://www.markwitmer.com/guile-xcb/guile-wm.html";)
+    (home-page "https://github.com/mwitmer/guile-wm/releases";)
     (description
      "Guile-WM is a simple window manager that's completely customizable—you
 have total control of what it does by choosing which modules to include.
 Included with it are a few modules that provide basic TinyWM-like window
 management, some window record-keeping, multi-monitor support, and emacs-like
 keymaps and minibuffer.  At this point, it's just enough to get you started.")
-    (license gpl3+)))
+    (license gpl3+))))



reply via email to

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