[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
258/285: gnu: Add picom.
From: |
guix-commits |
Subject: |
258/285: gnu: Add picom. |
Date: |
Sun, 29 Dec 2019 20:44:43 -0500 (EST) |
kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.
commit d239e94386e9c8530afde72f18836a3daea79056
Author: Alexandru-Sergiu Marton <address@hidden>
Date: Sat Dec 28 14:25:07 2019 -0600
gnu: Add picom.
* gnu/packages/compton.scm (picom): New variable.
Co-authored-by: Brett Gilio <address@hidden>
Signed-off-by: Brett Gilio <address@hidden>
---
gnu/packages/compton.scm | 54 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/gnu/packages/compton.scm b/gnu/packages/compton.scm
index c5b4c4e..e03c194 100644
--- a/gnu/packages/compton.scm
+++ b/gnu/packages/compton.scm
@@ -1,6 +1,8 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 José Miguel Sánchez García <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2019 Alexandru-Sergiu Marton <address@hidden>
+;;; Copyright © 2019 Brett Gilio <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -22,10 +24,15 @@
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system meson)
+ #:use-module (gnu packages datastructures)
#:use-module (gnu packages docbook)
#:use-module (gnu packages documentation)
+ #:use-module (gnu packages freedesktop)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages libevent)
+ #:use-module (gnu packages pcre)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages textutils)
@@ -103,3 +110,50 @@ performance).
@item Some more options...
@end itemize\n")
(license license:expat))))
+
+(define-public picom
+ (package
+ (name "picom")
+ (version "7.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/yshui/picom.git")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "1l48fxl04vkzr4r94sl37nbbw7a621rn8sxmkbdv4252i1gjxd4z"))
+ (file-name (string-append "picom-" version))))
+ (build-system meson-build-system)
+ (inputs
+ `(("dbus" ,dbus)
+ ("libconfig" ,libconfig)
+ ("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libev" ,libev)
+ ("mesa" ,mesa)
+ ("xprop" ,xprop)
+ ("xcb-util-renderutil" ,xcb-util-renderutil)
+ ("xcb-util-image" ,xcb-util-image)
+ ("pixman" ,pixman)
+ ("uthash" ,uthash)
+ ("libxdg-basedir" ,libxdg-basedir)
+ ("pcre" ,pcre)))
+ (native-inputs
+ `(("asciidoc" ,asciidoc)
+ ("pkg-config" ,pkg-config)
+ ("xorgproto" ,xorgproto)))
+ (arguments
+ `(#:build-type "release"
+ #:configure-flags '("-Dbuild_docs=true")))
+ (home-page "https://github.com/yshui/picom")
+ (synopsis "Compositor for X11, forked from Compton")
+ (description
+ "Picom is a standalone compositor for Xorg, suitable for use
+with window managers that do not provide compositing.
+
+Picom is a fork of compton, which is a fork of xcompmgr-dana,
+which in turn is a fork of xcompmgr.")
+ (license (list license:expat ; The original compton lincense.
+ license:mpl2.0)))) ; License used by new picom files.
- 267/285: gnu: emacs-auth-source-pass: Use upstream URL., (continued)
- 267/285: gnu: emacs-auth-source-pass: Use upstream URL., guix-commits, 2019/12/29
- 278/285: profiles: Add 'map-manifest-entries'., guix-commits, 2019/12/29
- 276/285: gnu: scummvm: Fix build., guix-commits, 2019/12/29
- 281/285: inferior: Add 'inferior-package-provenance'., guix-commits, 2019/12/29
- 284/285: gnu: gnome-themes-extra: Remove cache file., guix-commits, 2019/12/29
- 216/285: gnu: r-car: Update to 3.0-6., guix-commits, 2019/12/29
- 224/285: guix: emacs-utils: Add emacs-batch-disable-compilation., guix-commits, 2019/12/29
- 250/285: gnu: beets: Add support for Acoustid., guix-commits, 2019/12/29
- 253/285: gnu: python-waf: Add some extra tools., guix-commits, 2019/12/29
- 255/285: gnu: password-store: Make search path single-entry., guix-commits, 2019/12/29
- 258/285: gnu: Add picom.,
guix-commits <=
- 261/285: gnu: ruby-multi-json: Don't use unstable tarball., guix-commits, 2019/12/29
- 264/285: gnu: ruby-guard: Don't use unstable tarball., guix-commits, 2019/12/29
- 269/285: gnu: Add ghc-filepath-bytestring., guix-commits, 2019/12/29
- 268/285: gnu: curseradio: Link to mpv., guix-commits, 2019/12/29
- 271/285: gnu: diffoscope: Update to 134., guix-commits, 2019/12/29
- 272/285: gnu: portaudio: Fix build., guix-commits, 2019/12/29
- 285/285: gnu: guix-data-service: Update to 0.0.1-13.82b797e., guix-commits, 2019/12/29
- 282/285: services: dhcp-client: Ignore interfaces that cannot be activated., guix-commits, 2019/12/29
- 262/285: gnu: ruby-ae: Don't use unstable tarball., guix-commits, 2019/12/29
- 266/285: gnu: ruby-oj: Don't use unstable tarball., guix-commits, 2019/12/29