From 937b71dfce3cc203c30cb882095c4c590edd43a3 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 23 Feb 2017 13:47:03 +0100 Subject: 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(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index a1c89a5caa..d94455f834 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") -- cgit v1.2.3 From 2b7d10d2db9f5e2dc2afb0d8711ce67e0a63229b Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 23 Feb 2017 14:06:19 +0100 Subject: gnu: maim: Update to 4.4.47. * gnu/packages/xdisorg.scm (maim): Update to 4.4.47. [arguments]: Remove obsolete 'patch-source' phase. [inputs]: Remove LIBX11 and IMLIB2. Add GLM, LIBJPEG-TURBO, LIBPNG, LIBXCOMPOSITE, MESA and ZLIB. --- gnu/packages/xdisorg.scm | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index d94455f834..8aa4c38db4 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -469,7 +469,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "3.4.47") + (version "4.4.47") (source (origin (method url-fetch) (uri (string-append @@ -478,27 +478,20 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0kfp7k55bxc5h6h0wv8bwmsc5ny66h9ra2z4dzs4yzszq16544pv")))) + "0bfq2p158b26s913afbh6vvs4mhxs897q9zwb0hhifyx8i85863i")))) (build-system cmake-build-system) (arguments - '(#:tests? #f ; no "check" target - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'patch-source - (lambda* (#:key inputs #:allow-other-keys) - (let ((slop (string-append (assoc-ref inputs "slop") - "/bin/slop"))) - ;; "slop" command is hardcoded in the source; replace it - ;; with the full file name. - (substitute* "src/main.cpp" - (("^( +slopcommand.*)\"slop\"" all front) - (string-append front "\"" slop "\""))))))))) + '(#:tests? #f)) ; no "check" target (inputs - `(("libx11" ,libx11) - ("libxrandr" ,libxrandr) + `(("glm" ,glm) + ("libjpeg" ,libjpeg-turbo) + ("libpng" ,libpng) + ("libxcomposite" ,libxcomposite) ("libxfixes" ,libxfixes) - ("imlib2" ,imlib2) - ("slop" ,slop))) + ("libxrandr" ,libxrandr) + ("mesa" ,mesa) + ("slop" ,slop) + ("zlib" ,zlib))) (home-page "https://github.com/naelstrof/maim") (synopsis "Screenshot utility for X Window System") (description -- cgit v1.2.3 From e1c014d7f3cc22a40917a112e9a5203a5c67a4ea Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 24 Feb 2017 11:19:18 +0100 Subject: gnu: slop: Update to 5.3.27. * gnu/packages/xdisorg.scm (slop): Update to 5.3.27. [arguments]: Remove #:configure-flags. [inputs]: Add LIBXRENDER. --- gnu/packages/xdisorg.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 8aa4c38db4..672902e0be 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -438,7 +438,7 @@ of the screen selected by mouse.") (define-public slop (package (name "slop") - (version "5.3.21") + (version "5.3.27") (source (origin (method url-fetch) (uri (string-append @@ -447,14 +447,14 @@ of the screen selected by mouse.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0qlyksiaknd40jabra0fv71k4qc4y6dgxihjmmv9a1g4hdmmqklb")))) + "0yid1qd5l0g22cmm3mmmbg639404i7069nw5g843llb5yfc54bs0")))) (build-system cmake-build-system) (arguments - '(#:configure-flags '("-DCMAKE_CXX_FLAGS=-std=gnu++11") - #:tests? #f)) ; no "check" target + '(#:tests? #f)) ; no "check" target (inputs `(("glm" ,glm) ("libxext" ,libxext) + ("libxrender" ,libxrender) ("mesa" ,mesa))) (home-page "https://github.com/naelstrof/slop") (synopsis "Select a region and print its bounds to stdout") -- cgit v1.2.3 From 2c8b6b4f842a239c68d43f0694126bf9c3c4d24f Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 24 Feb 2017 11:20:22 +0100 Subject: gnu: maim: Update to 4.4.49. * gnu/packages/xdisorg.scm (maim): Update to 4.4.49. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 672902e0be..c34884291b 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -469,7 +469,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "4.4.47") + (version "4.4.49") (source (origin (method url-fetch) (uri (string-append @@ -478,7 +478,7 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0bfq2p158b26s913afbh6vvs4mhxs897q9zwb0hhifyx8i85863i")))) + "0cflwipjsqy1i9anviwb1zlrsyrdmhm879grc9br8wbwg4rkqnpw")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 472bf038575fce0cf83584b3433aa4b4d9a383f1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 25 Feb 2017 11:56:29 +0100 Subject: gnu: slop: Update to 5.3.28. * gnu/packages/xdisorg.scm (slop): Update to 5.3.28. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index c34884291b..01e9f5aa13 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -438,7 +438,7 @@ of the screen selected by mouse.") (define-public slop (package (name "slop") - (version "5.3.27") + (version "5.3.28") (source (origin (method url-fetch) (uri (string-append @@ -447,7 +447,7 @@ of the screen selected by mouse.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0yid1qd5l0g22cmm3mmmbg639404i7069nw5g843llb5yfc54bs0")))) + "01k39wb1w367zbnl3ni76n3xcmcyvjf14jvk09cd409mvhwyl0p4")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 988a5cb11eaa6fad2389e1e3ddb490b4032b1e46 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 25 Feb 2017 11:57:36 +0100 Subject: gnu: maim: Update to 4.4.50. * gnu/packages/xdisorg.scm (maim): Update to 4.4.50. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 01e9f5aa13..b5f3dc6473 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -469,7 +469,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "4.4.49") + (version "4.4.50") (source (origin (method url-fetch) (uri (string-append @@ -478,7 +478,7 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0cflwipjsqy1i9anviwb1zlrsyrdmhm879grc9br8wbwg4rkqnpw")))) + "0lr11x77981jzx53z1zd48d8ss5swhcg3sxy8naz6945wc9i3mh8")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 31ccf5dc6cb020d4502ac54ed7342f5440ea6d83 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 27 Feb 2017 12:19:46 +0100 Subject: gnu: slop: Update to 5.3.35. * gnu/packages/xdisorg.scm (slop): Update to 5.3.35. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index b5f3dc6473..6e38a5aa3a 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -438,7 +438,7 @@ of the screen selected by mouse.") (define-public slop (package (name "slop") - (version "5.3.28") + (version "5.3.35") (source (origin (method url-fetch) (uri (string-append @@ -447,7 +447,7 @@ of the screen selected by mouse.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "01k39wb1w367zbnl3ni76n3xcmcyvjf14jvk09cd409mvhwyl0p4")))) + "12fkwardd33xbaisjv93r49jh1dmqw323zjsd9m8kxcyv1rimsig")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 298111a7a76fd01dd475fa27576b13751bf05de9 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 27 Feb 2017 12:20:31 +0100 Subject: gnu: maim: Update to 4.4.59. * gnu/packages/xdisorg.scm (maim): Update to 4.4.59. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 6e38a5aa3a..3d69661ba5 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -469,7 +469,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "4.4.50") + (version "4.4.59") (source (origin (method url-fetch) (uri (string-append @@ -478,7 +478,7 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0lr11x77981jzx53z1zd48d8ss5swhcg3sxy8naz6945wc9i3mh8")))) + "0h8z4wm7zgxj1vlp98n12dyiwjwphhnl6yh8aaz3krm5v2kyy6hc")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From ad839aeaee59f624f95edef529b95206522d0d41 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 1 Mar 2017 15:54:21 +0100 Subject: gnu: slop: Update to 5.3.37. * gnu/packages/xdisorg.scm (slop): Update to 5.3.37. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 3d69661ba5..548b278764 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -438,7 +438,7 @@ of the screen selected by mouse.") (define-public slop (package (name "slop") - (version "5.3.35") + (version "5.3.37") (source (origin (method url-fetch) (uri (string-append @@ -447,7 +447,7 @@ of the screen selected by mouse.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "12fkwardd33xbaisjv93r49jh1dmqw323zjsd9m8kxcyv1rimsig")))) + "1p2ih123zkj8rxz8acsxpaim1kq57f4rbq7zqsibafn5rkw5c5is")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 7166221c624ae9b7663ca9743612a13c1576095a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 1 Mar 2017 15:55:03 +0100 Subject: gnu: maim: Update to 4.4.60. * gnu/packages/xdisorg.scm (maim): Update to 4.4.60. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 548b278764..a9c2e06b44 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -469,7 +469,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "4.4.59") + (version "4.4.60") (source (origin (method url-fetch) (uri (string-append @@ -478,7 +478,7 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0h8z4wm7zgxj1vlp98n12dyiwjwphhnl6yh8aaz3krm5v2kyy6hc")))) + "1j8czhbgilmv9c9hlind1w847yk856dzvxx1sj17fx89xkg8nixk")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 374474225421ffbd2d0420dc94fb88cea4d679dd Mon Sep 17 00:00:00 2001 From: Mekeor Melire Date: Fri, 3 Mar 2017 00:22:47 +0100 Subject: gnu: Add dzen. * gnu/packages/xdisorg.scm (dzen): New variable. Signed-off-by: Leo Famulari --- gnu/packages/xdisorg.scm | 53 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index a9c2e06b44..3667797abd 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2016 Alex Kost ;;; Copyright © 2016 Marius Bakke ;;; Copyright © 2016 Petter +;;; Copyright © 2017 Mekeor Melire ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,6 +37,7 @@ #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) + #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) @@ -1023,6 +1025,57 @@ border, and background. It also supports multihead setups, customized mouse actions, a built-in clock, a battery monitor and a system tray.") (license license:gpl2))) +(define-public dzen + (let ((commit "488ab66019f475e35e067646621827c18a879ba1") + (revision "1")) + (package + (name "dzen") + (version (string-append "0.9.5-" ; Taken from `config.mk`. + revision "." (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/robm/dzen.git") + (commit commit))) + (file-name (string-append name "-" version)) + (sha256 + (base32 + "0y47d6ii87vf4a517gi4fh0yl06f8b085sra77immnsasbq9pxnw")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No test suite. + #:make-flags ; Replacement for `config.mk`. + (list + (string-append "VERSION = " ,version) + (string-append "PREFIX = " %output) + "MANPREFIX = ${PREFIX}/share/man" + "INCS = -I." + "LIBS = -lc -lX11 -lXinerama -lXpm $(shell pkg-config --libs xft)" + "CFLAGS = -Wall -Os ${INCS} -DVERSION=\\\"${VERSION}\\\"\ + -DDZEN_XINERAMA -DDZEN_XPM -DDZEN_XFT $(shell pkg-config --cflags xft)" + "LDFLAGS = ${LIBS}" + "CC = gcc" + "LD = ${CC}") + #:phases + (modify-phases %standard-phases + (delete 'configure) ; No configuration script. + ;; Use own make-flags instead of `config.mk`. + (add-before 'build 'dont-include-config-mk + (lambda _ + (substitute* "Makefile" (("include config.mk") "")) + #t))))) + (inputs + `(("libx11" ,libx11) + ("libxft" ,libxft) + ("libxpm" ,libxpm) + ("libxinerama" ,libxinerama))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "General purpose messaging, notification and menuing program for X11") + (description "Dzen is a general purpose messaging, notification and menuing +program for X11. It was designed to be fast, tiny and scriptable in any language.") + (home-page "https://github.com/robm/dzen") + (license license:expat)))) + (define-public xcb-util-xrm (package (name "xcb-util-xrm") -- cgit v1.2.3 From 608afe067ee4e43ca209f3d4b47b0789ed1f6707 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Fri, 3 Mar 2017 17:10:30 +0100 Subject: gnu: maim: Update to 4.4.61. * gnu/packages/xdisorg.scm (maim): Update to 4.4.61. --- gnu/packages/xdisorg.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 3667797abd..3e0b441128 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -471,7 +471,7 @@ selection's dimensions to stdout.") (define-public maim (package (name "maim") - (version "4.4.60") + (version "4.4.61") (source (origin (method url-fetch) (uri (string-append @@ -480,7 +480,7 @@ selection's dimensions to stdout.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1j8czhbgilmv9c9hlind1w847yk856dzvxx1sj17fx89xkg8nixk")))) + "14jksv05xyydbpb9v8k3jgq7sl72bh356iapymg02vwg519i1d5k")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no "check" target -- cgit v1.2.3 From 33c93ea33ed9ab35f9432665f931285898ca75c7 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 5 Mar 2017 16:14:43 -0500 Subject: gnu: rxvt-unicode: Add '.desktop' files. This fixes . * gnu/packages/xdisorg.scm (rxvt-unicode)[arguments]: Add 'install-desktop-urxvt' and 'install-desktop-urxvtc' phases. --- gnu/packages/xdisorg.scm | 43 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 3e0b441128..7d4209d126 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2016 Marius Bakke ;;; Copyright © 2016 Petter ;;; Copyright © 2017 Mekeor Melire +;;; Copyright © 2017 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -689,9 +690,47 @@ compact configuration syntax.") ;; This sets the destination when installing the necessary terminal ;; capability data, which are not provided by 'ncurses'. See ;; https://lists.gnu.org/archive/html/bug-ncurses/2009-10/msg00031.html - '(#:make-flags (list (string-append "TERMINFO=" + `(#:make-flags (list (string-append "TERMINFO=" (assoc-ref %outputs "out") - "/share/terminfo")))) + "/share/terminfo")) + #:phases + (modify-phases %standard-phases + (add-after 'install 'install-desktop-urxvt + (lambda* (#:key outputs #:allow-other-keys) + (let* ((output (assoc-ref outputs "out")) + (desktop (string-append output "/share/applications"))) + (mkdir-p desktop) + (with-output-to-file + (string-append desktop "/urxvt.desktop") + (lambda _ + (format #t + "[Desktop Entry]~@ + Name=rxvt-unicode~@ + Comment=~@ + Exec=~a/bin/urxvt~@ + TryExec=~@*~a/bin/urxvt~@ + Icon=~@ + Type=Application~%" + output))) + #t))) + (add-after 'install 'install-desktop-urxvtc + (lambda* (#:key outputs #:allow-other-keys) + (let* ((output (assoc-ref outputs "out")) + (desktop (string-append output "/share/applications"))) + (mkdir-p desktop) + (with-output-to-file + (string-append desktop "/urxvtc.desktop") + (lambda _ + (format #t + "[Desktop Entry]~@ + Name=rxvt-unicode~@ + Comment=Rxvt clone with XFT and unicode support~@ + Exec=~a/bin/urxvtc~@ + TryExec=~@*~a/bin/urxvtc~@ + Icon=~@ + Type=Application~%" + output))) + #t)))))) (inputs `(("libXft" ,libxft) ("libX11" ,libx11))) -- cgit v1.2.3 From 46d6219d41e98d20797fc075becdeecec73c7327 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Sat, 4 Mar 2017 17:23:14 +0100 Subject: gnu: rofi: Fix test failure. * gnu/packages/xdisorg.scm (rofi)[arguments]: Disable parallel tests. --- gnu/packages/xdisorg.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/xdisorg.scm') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 7d4209d126..5afc495ad7 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -1003,7 +1003,8 @@ connectivity of the X server running on a particular @code{DISPLAY}.") (native-inputs `(("pkg-config" ,pkg-config))) (arguments - `(#:phases + `(#:parallel-tests? #f ; May fail in some circumstances. + #:phases (modify-phases %standard-phases (add-before 'configure 'adjust-tests (lambda _ -- cgit v1.2.3