From 751f68717538ae0d145d348fca04aebc713740ac Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Fri, 29 Jul 2016 18:19:49 +0200 Subject: gnu: Add tint2. * gnu/packages/xdisorg.scm (tint2): New variable. --- gnu/packages/xdisorg.scm | 50 ++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 226e5c1ca1..659bce098d 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2014 Eric Bavier ;;; Copyright © 2014, 2015, 2016 Alex Kost ;;; Copyright © 2013, 2015 Ludovic Courtès -;;; Copyright © 2015 Mathieu Lirzin +;;; Copyright © 2015, 2016 Mathieu Lirzin ;;; Copyright © 2015 Alexander I.Grafov ;;; Copyright © 2015 Andy Wingo ;;; Copyright © 2015 xd1le @@ -48,7 +48,7 @@ #:use-module (gnu packages gettext) #:use-module (gnu packages gl) #:use-module (gnu packages glib) - #:use-module (gnu packages gnome) ;for libgudev + #:use-module (gnu packages gnome) #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) #:use-module (gnu packages python) @@ -976,3 +976,49 @@ connectivity of the X server running on a particular @code{DISPLAY}.") applications you regularily use and also allows you to search for an application by name.") (license license:expat))) + +(define-public tint2 + (package + (name "tint2") + (version "0.12.11") + (source (origin + (method url-fetch) + (uri (string-append "https://gitlab.com/o9000/" name + "/repository/archive.tar.gz?ref=" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0dv7zaj2ahnfclnwnwcz9arrvzxn65yy29z7fqdgifdh3jk1kl2h")))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f ;no test target + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-installation-prefix + (lambda _ + (substitute* "CMakeLists.txt" + (("/etc") "${CMAKE_INSTALL_PREFIX}/etc"))))))) + (inputs + `(("gtk+" ,gtk+-2) + ("imlib2" ,imlib2) + ("librsvg" ,librsvg) + ("libxcomposite" ,libxcomposite) + ("libxdamage" ,libxdamage) + ("libxft" ,libxft) + ("libxinerama" ,libxinerama) + ("libxrandr" ,libxrandr) + ("startup-notification" ,startup-notification))) + (native-inputs + `(("gettext" ,gnu-gettext) + ("pkg-config" ,pkg-config))) + (home-page "https://gitlab.com/o9000/tint2") + (synopsis "Lightweight task bar") + (description + "Tint2 is a simple task bar made for modern X window managers. It was +specifically made for Openbox but it should also work with other window +managers (GNOME, KDE, XFCE etc.). + +The taskbar includes transparency and color settings for the font, icons, +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))) -- cgit v1.2.3