summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2021-12-27 23:58:28 +0100
committerSimon Streit <simon@netpanic.org>2022-01-06 00:10:09 +0100
commitb28da539611e0951e5bfa4afb66c5c78180da19d (patch)
treed5c49148b6e8f5c55630011c8f98b8ee0cfe0034
parent1483d44e91a8f49a7b5a08bab135bf3d7feaa2c8 (diff)
siguix: Add parole.
* siguix/packages/xfce.scm (parole): New variable.
-rw-r--r--siguix/packages/xfce.scm77
1 files changed, 77 insertions, 0 deletions
diff --git a/siguix/packages/xfce.scm b/siguix/packages/xfce.scm
new file mode 100644
index 0000000..95a7f02
--- /dev/null
+++ b/siguix/packages/xfce.scm
@@ -0,0 +1,77 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (siguix packages xfce)
+ #:use-module (gnu artwork)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages freedesktop)
+ #:use-module (gnu packages gettext)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gstreamer)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages photo)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages xfce)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix gexp)
+ #:use-module ((guix licenses) #:hide (freetype))
+ #:use-module (guix packages)
+ #:use-module (guix utils))
+
+(define-public parole
+ (package
+ (name "parole")
+ (version "4.16.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://archive.xfce.org/src/apps/parole/"
+ (version-major+minor version) "/"
+ "parole-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "1rx7apylqb7mf1dl0sswj1630fca3ddk4x1gcdmlv5ykrkc5lc0d"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:configure-flags
+ (list "-disable-mpris2-plugin")))
+ (native-inputs
+ (list intltool
+ desktop-file-utils
+ pkg-config
+ `(,glib "bin")))
+ (inputs
+ (list dbus
+ dbus-glib
+ gst-plugins-base
+ gst-plugins-good
+ gst-plugins-bad
+ gst-plugins-ugly
+ gstreamer
+ gtk+
+ libnotify
+ libxfce4ui
+ libxfce4util))
+ (home-page "https://docs.xfce.org/apps/parole/start")
+ (synopsis "A modern and simple media player")
+ (description "The Parole Media Player is media player based on the
+GStreamer framework that fits well in the Xfce desktop. Parole
+features playback of local media files, DVD/CD and live streams.")
+ (license gpl2+)))