guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: slop: Update to 5.3.21.


From: Marius Bakke
Subject: 01/02: gnu: slop: Update to 5.3.21.
Date: Thu, 23 Feb 2017 08:36:02 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 937b71dfce3cc203c30cb882095c4c590edd43a3
Author: Marius Bakke <address@hidden>
Date:   Thu Feb 23 13:47:03 2017 +0100

    gnu: slop: Update to 5.3.21.
    
    * gnu/packages/xdisorg.scm (slop): Update to 5.3.21.
    [arguments]: Specify -std=gnu++11 in #:configure-flags.
    [inputs]: Drop LIBX11, LIBXRANDR, IMLIB2 and GLEW. Add GLM.
---
 gnu/packages/xdisorg.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index a1c89a5..d94455f 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -51,6 +51,7 @@
   #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
+  #:use-module (gnu packages maths)
   #:use-module (gnu packages m4)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages perl)
@@ -437,7 +438,7 @@ of the screen selected by mouse.")
 (define-public slop
   (package
     (name "slop")
-    (version "4.3.21")
+    (version "5.3.21")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -446,15 +447,14 @@ of the screen selected by mouse.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "0z0p4a3p5mc6fjh5f8js9ppb0maxyvfxpiw2n6nqc5nim1kv6bim"))))
+                "0qlyksiaknd40jabra0fv71k4qc4y6dgxihjmmv9a1g4hdmmqklb"))))
     (build-system cmake-build-system)
-    (arguments '(#:tests? #f))  ; no "check" target
+    (arguments
+     '(#:configure-flags '("-DCMAKE_CXX_FLAGS=-std=gnu++11")
+       #:tests? #f)) ; no "check" target
     (inputs
-     `(("libx11" ,libx11)
-       ("libxrandr" ,libxrandr)
+     `(("glm" ,glm)
        ("libxext" ,libxext)
-       ("imlib2" ,imlib2)
-       ("glew" ,glew)
        ("mesa" ,mesa)))
     (home-page "https://github.com/naelstrof/slop";)
     (synopsis "Select a region and print its bounds to stdout")



reply via email to

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