summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-24 23:59:55 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commitb10340ff03ab0dcca4e3b5486636c88b874f68ac (patch)
tree9d30a2dc5403e2efe95cb8f6df7b4be916f4437e
parenteeee51604938096f5d388c211162408c2e200ce9 (diff)
siguix: Add ymuse.
* siguix/packages/ymuse.scm: New file.
-rw-r--r--siguix/packages/ymuse.scm81
1 files changed, 81 insertions, 0 deletions
diff --git a/siguix/packages/ymuse.scm b/siguix/packages/ymuse.scm
new file mode 100644
index 0000000..b1a3dbb
--- /dev/null
+++ b/siguix/packages/ymuse.scm
@@ -0,0 +1,81 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2022 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 ymuse)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
+ #:use-module (guix build-system go)
+ #:use-module (guix git-download)
+ #:use-module (guix packages)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages autotools)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages mpd)
+ #:use-module (gnu packages golang)
+ #:use-module (gnu packages gettext)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (siguix packages golang))
+
+(define-public ymuse
+ (package
+ (name "ymuse")
+ (version "0.20")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/yktoo/ymuse")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "05qddh2bcgqrdasch9yalpjzfl01g2xbjc1bfm2mbi3h3hs26d60"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/yktoo/ymuse"
+ #:go ,go-1.17))
+ (native-inputs (list pkg-config))
+ (inputs (list glib
+ gtk+
+ gdk-pixbuf
+ go-github-com-fhs-gompd
+ go-github-com-gotk3-gotk3-cairo
+ go-github-com-gotk3-gotk3-gdk
+ go-github-com-gotk3-gotk3-gio
+ go-github-com-gotk3-gotk3-glib
+ go-github-com-gotk3-gotk3-gtk
+ go-github-com-gotk3-gotk3-internal-callback
+ go-github-com-gotk3-gotk3-internal-closure
+ go-github-com-gotk3-gotk3-internal-slab
+ go-github-com-gotk3-gotk3-pango
+ go-github-com-op-go-logging
+ go-github-com-pkg-errors
+
+ ;; icons are not properly shown yet
+ gsettings-desktop-schemas
+ adwaita-icon-theme
+ gdk-pixbuf))
+
+ (home-page "https://yktoo.com/en/software/ymuse/")
+ (synopsis "GTK client for Music Player Daemon (MPD) written in Go")
+ (description
+ "Ymuse is an easy, functional, and snappy GTK
+front-end (client) for Music Player Daemon written in Go. It supports
+both light and dark desktop theme.")
+ (license license:asl2.0)))