summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-24 12:38:35 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commit994a98a397a9632d27d70c8773186ffc5d178907 (patch)
treebdcdea628dde59690ca30565d9df3245a09fa7e1
parenteca3ed0659d936da2189beda202ddaf64ae28810 (diff)
siguix: Remove parole.
* siguix/packages/xfce.scm: Remove file.
-rw-r--r--siguix/packages/xfce.scm77
1 files changed, 0 insertions, 77 deletions
diff --git a/siguix/packages/xfce.scm b/siguix/packages/xfce.scm
deleted file mode 100644
index 95a7f02..0000000
--- a/siguix/packages/xfce.scm
+++ /dev/null
@@ -1,77 +0,0 @@
-;;; 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+)))