2019-11-07 04:16:19 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-09-25 03:27:02 -04:00
|
|
|
|
;;; Copyright © 2019, 2020, 2021 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
2021-01-09 10:03:49 -05:00
|
|
|
|
;;; Copyright © 2019, 2021 Alexandros Theodotou <alex@zrythm.org>
|
2019-11-09 07:48:59 -05:00
|
|
|
|
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
2020-02-19 16:46:55 -05:00
|
|
|
|
;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
|
2020-02-21 09:20:58 -05:00
|
|
|
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
2020-11-21 18:17:13 -05:00
|
|
|
|
;;; Copyright © 2020 Kei Kebreau <kkebreau@posteo.net>
|
2020-03-20 15:34:51 -04:00
|
|
|
|
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
|
2023-01-28 19:00:00 -05:00
|
|
|
|
;;; Copyright © 2020, 2023 Tobias Geerinckx-Rice <me@tobias.gr>
|
2020-06-02 23:06:35 -04:00
|
|
|
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
2021-01-01 09:20:14 -05:00
|
|
|
|
;;; Copyright © 2020 Ellis Kenyo <me@elken.dev>
|
2021-02-10 13:03:01 -05:00
|
|
|
|
;;; Copyright © 2020 Stefan Reichör <stefan@xsteve.at>
|
2022-06-14 11:18:55 -04:00
|
|
|
|
;;; Copyright © 2021, 2022 Vinicius Monego <monego@posteo.net>
|
2021-10-04 11:50:42 -04:00
|
|
|
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
2021-11-21 01:10:32 -05:00
|
|
|
|
;;; Copyright © 2021 Songlin Jiang <hollowman@hollowman.ml>
|
2022-02-13 11:15:55 -05:00
|
|
|
|
;;; Copyright © 2021, 2022 Justin Veilleux <terramorpha@cock.li>
|
2022-01-07 07:50:30 -05:00
|
|
|
|
;;; Copyright © 2021 Attila Lendvai <attila@lendvai.name>
|
2022-01-11 16:24:08 -05:00
|
|
|
|
;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
|
2022-06-08 00:19:29 -04:00
|
|
|
|
;;; Copyright © 2022 Eric Bavier <bavier@posteo.net>
|
2022-06-22 02:07:21 -04:00
|
|
|
|
;;; Copyright © 2022 Sughosha <sughosha@proton.me>
|
2022-08-16 19:46:01 -04:00
|
|
|
|
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
2023-07-06 05:10:01 -04:00
|
|
|
|
;;; Copyright © 2023 Eidvilas Markevičius <markeviciuseidvilas@gmail.com>
|
2019-11-07 04:16:19 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is 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 (gnu packages gnome-xyz)
|
|
|
|
|
#:use-module (guix build-system trivial)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
2020-02-19 16:46:55 -05:00
|
|
|
|
#:use-module (guix build-system copy)
|
2020-02-21 17:25:27 -05:00
|
|
|
|
#:use-module (guix build-system meson)
|
2022-06-08 00:19:29 -04:00
|
|
|
|
#:use-module (guix build-system python)
|
2022-01-07 07:50:30 -05:00
|
|
|
|
#:use-module (guix gexp)
|
2019-11-07 04:16:19 -05:00
|
|
|
|
#:use-module (guix git-download)
|
|
|
|
|
#:use-module (guix packages)
|
2021-02-10 13:03:01 -05:00
|
|
|
|
#:use-module (guix utils)
|
2019-11-07 04:16:19 -05:00
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2022-01-07 07:50:30 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2021-12-11 02:44:39 -05:00
|
|
|
|
#:use-module (gnu packages acl)
|
|
|
|
|
#:use-module (gnu packages attr)
|
2021-01-02 17:56:30 -05:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2022-01-07 07:50:30 -05:00
|
|
|
|
#:use-module (gnu packages backup)
|
2019-11-09 04:39:28 -05:00
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages bash)
|
2021-12-11 02:44:39 -05:00
|
|
|
|
#:use-module (gnu packages build-tools)
|
2022-06-08 00:19:29 -04:00
|
|
|
|
#:use-module (gnu packages check)
|
2022-11-24 11:21:26 -05:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2020-02-21 17:25:27 -05:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2019-11-07 04:16:19 -05:00
|
|
|
|
#:use-module (gnu packages glib)
|
2019-11-09 07:48:59 -05:00
|
|
|
|
#:use-module (gnu packages gnome)
|
2019-11-09 04:39:28 -05:00
|
|
|
|
#:use-module (gnu packages gtk)
|
2021-01-02 17:56:30 -05:00
|
|
|
|
#:use-module (gnu packages inkscape)
|
|
|
|
|
#:use-module (gnu packages image)
|
2019-11-09 07:48:59 -05:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2022-04-20 00:58:18 -04:00
|
|
|
|
#:use-module (gnu packages python)
|
2022-06-08 00:19:29 -04:00
|
|
|
|
#:use-module (gnu packages python-science)
|
2020-02-21 17:25:27 -05:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
|
|
|
|
#:use-module (gnu packages ssh)
|
|
|
|
|
#:use-module (gnu packages tls)
|
2019-11-09 07:48:59 -05:00
|
|
|
|
#:use-module (gnu packages ruby)
|
2020-11-21 18:17:13 -05:00
|
|
|
|
#:use-module (gnu packages web)
|
2022-09-21 20:20:35 -04:00
|
|
|
|
#:use-module (gnu packages xml)
|
|
|
|
|
#:use-module (gnu packages xorg))
|
2019-11-07 04:16:19 -05:00
|
|
|
|
|
2021-01-02 18:01:13 -05:00
|
|
|
|
(define-public arc-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "arc-icon-theme")
|
|
|
|
|
(version "20161122")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/horst3180/arc-icon-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'disable-configure-during-bootstrap
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "autogen.sh"
|
|
|
|
|
(("^\"\\$srcdir/configure\".*") ""))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake))
|
2021-01-02 18:01:13 -05:00
|
|
|
|
;; When Arc is missing an icon, it looks in the Moka icon theme for it.
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list moka-icon-theme))
|
2021-01-02 18:01:13 -05:00
|
|
|
|
(synopsis "Arc icon theme")
|
|
|
|
|
(description "The Arc icon theme provides a set of icons matching the
|
|
|
|
|
style of the Arc GTK theme. Icons missing from the Arc theme are provided by
|
|
|
|
|
the Moka icon theme.")
|
|
|
|
|
(home-page "https://github.com/horst3180/arc-icon-theme")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(define-public delft-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "delft-icon-theme")
|
2021-01-02 12:45:14 -05:00
|
|
|
|
(version "1.14")
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/madmaxms/iconpack-delft")
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-01-02 12:45:14 -05:00
|
|
|
|
"1iw85cxx9lv7irs28qi3815dk9f9vldv2j7jf1x5l1dqzwaxgwpb"))
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
2020-02-21 11:17:56 -05:00
|
|
|
|
(build-system copy-build-system)
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(arguments
|
2020-02-21 11:17:56 -05:00
|
|
|
|
`(#:install-plan
|
|
|
|
|
`(("." "share/icons" #:exclude ("README.md" "LICENSE" "logo.jpg")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-index.theme
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Delft/index.theme"
|
|
|
|
|
(("gnome") "Adwaita"))
|
|
|
|
|
#t)))))
|
2019-11-07 04:16:19 -05:00
|
|
|
|
(home-page "https://www.gnome-look.org/p/1199881/")
|
|
|
|
|
(synopsis "Continuation of Faenza icon theme with up to date app icons")
|
|
|
|
|
(description "Delft is a fork of the popular icon theme Faenza with up to
|
|
|
|
|
date app icons. It will stay optically close to the original Faenza icons,
|
|
|
|
|
which haven't been updated for some years. The new app icons are ported from
|
|
|
|
|
the Obsidian icon theme.")
|
|
|
|
|
(license license:gpl3)))
|
2019-11-07 13:20:44 -05:00
|
|
|
|
|
2021-01-02 18:11:53 -05:00
|
|
|
|
(define-public faba-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "faba-icon-theme")
|
|
|
|
|
(version "4.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/snwh/faba-icon-theme")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0xh6ppr73p76z60ym49b4d0liwdc96w41cc5p07d48hxjsa6qd6n"))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'disable-post-install
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "meson.build"
|
|
|
|
|
(("meson.add_install_script.*") "")))))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake))
|
2021-01-02 18:11:53 -05:00
|
|
|
|
(synopsis "Faba icon theme")
|
|
|
|
|
(description
|
|
|
|
|
"Faba is a minimal icon set used as a basis for other themes such as
|
|
|
|
|
Moka")
|
|
|
|
|
(home-page "https://snwh.org/moka")
|
|
|
|
|
(license (list license:lgpl3+
|
|
|
|
|
license:cc-by-sa4.0))))
|
|
|
|
|
|
|
|
|
|
(define-public moka-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(inherit faba-icon-theme)
|
|
|
|
|
(name "moka-icon-theme")
|
|
|
|
|
(version "5.4.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/snwh/moka-icon-theme")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "015l02im4mha5z91dbchxf6xkp66d346bg3xskwg0rh3lglhjsrd"))))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; Moka is based on Faba by using it as a fallback icon set instead of
|
|
|
|
|
;; bundling it, so we need to add it as a propagated input.
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list faba-icon-theme))
|
2021-01-02 18:11:53 -05:00
|
|
|
|
(synopsis "Moka icon theme")
|
|
|
|
|
(description "Moka is a stylized desktop icon set, designed to be clear,
|
|
|
|
|
simple and consistent.")
|
|
|
|
|
(license (list license:gpl3+
|
|
|
|
|
license:cc-by-sa4.0))))
|
|
|
|
|
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(define-public papirus-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "papirus-icon-theme")
|
2022-12-31 04:00:07 -05:00
|
|
|
|
(version "20230104")
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/PapirusDevelopmentTeam/papirus-icon-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(sha256
|
2022-12-31 04:00:07 -05:00
|
|
|
|
(base32 "1x40gdqyw0gj389by6904g5a64r72by544k3nlyiamjhg2zmpx97"))
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2022-05-28 20:00:02 -04:00
|
|
|
|
'(#:tests? #f ; no test suite
|
2021-01-02 18:16:38 -05:00
|
|
|
|
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(delete 'configure)
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(delete 'build)
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(add-before 'install 'halve-inode-consumption
|
2023-01-28 19:00:00 -05:00
|
|
|
|
;; This package uses over 100K inodes, which is a lot. We can easily
|
|
|
|
|
;; halve that number by using (hard) links, to no ill effect.
|
|
|
|
|
;; See <https://logs.guix.gnu.org/guix/2023-01-31.log#171227>.
|
|
|
|
|
;; However, the source checkout will still use the full amount!
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(lambda _
|
|
|
|
|
(let ((symlink? (lambda (_ stat)
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(eq? 'symlink (stat:type stat)))))
|
|
|
|
|
(for-each (lambda (file)
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(let ((target (canonicalize-path file)))
|
|
|
|
|
(when (eq? 'regular (stat:type (stat target)))
|
|
|
|
|
(delete-file file)
|
|
|
|
|
(link target file))))
|
2023-01-28 19:00:00 -05:00
|
|
|
|
(find-files "." symlink?))))))))
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(native-inputs
|
2022-05-28 20:00:01 -04:00
|
|
|
|
(list `(,gtk+ "bin")))
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(home-page "https://git.io/papirus-icon-theme")
|
|
|
|
|
(synopsis "Fork of Paper icon theme with a lot of new icons and a few extras")
|
|
|
|
|
(description "Papirus is a fork of the icon theme Paper with a lot of new icons
|
|
|
|
|
and a few extra features.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-12-30 18:15:11 -05:00
|
|
|
|
(define-public flat-remix-icon-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "flat-remix-icon-theme")
|
|
|
|
|
(version "20220525")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/daniruiz/flat-remix")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0ygazxccqf7hn1hxnf1mmsp17gm1m4hpcandfz9v5ijrgkd1m596"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no included tests
|
|
|
|
|
#:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(home-page "https://drasite.com/flat-remix")
|
|
|
|
|
(synopsis "Icon theme with material design")
|
|
|
|
|
(description "Flat Remix is an icon theme inspired by material design. It
|
|
|
|
|
is mostly flat using a colorful palette with some shadows, highlights, and
|
|
|
|
|
gradients for some depth.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-12-30 18:17:23 -05:00
|
|
|
|
(define-public flat-remix-gtk-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "flat-remix-gtk-theme")
|
|
|
|
|
(version "20220627")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/daniruiz/flat-remix-gtk")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1kwahlrcm9rfsrd97q9lsbfz5390qafwbv78zl6j2vqgqnxhpwng"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ; no included tests
|
|
|
|
|
#:make-flags `(,(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(home-page "https://drasite.com/flat-remix-gtk")
|
|
|
|
|
(synopsis "GTK application theme with material design")
|
|
|
|
|
(description "Flat Remix GTK is a GTK application theme inspired by
|
|
|
|
|
material design. It is mostly flat using a colorful palette with some
|
|
|
|
|
shadows, highlights, and gradients for some depth.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-12-30 18:18:05 -05:00
|
|
|
|
(define-public flat-remix-gnome-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "flat-remix-gnome-theme")
|
2023-06-08 09:48:17 -04:00
|
|
|
|
(version "20230508")
|
2022-12-30 18:18:05 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/daniruiz/flat-remix-gnome")
|
2023-06-08 09:48:17 -04:00
|
|
|
|
(commit version)))
|
2022-12-30 18:18:05 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2023-06-08 09:48:17 -04:00
|
|
|
|
(base32 "1b31ayb4qvcr5m3dqcidl9ilpp3w4mr56wq6vrp73g4cj558pi9h"))))
|
2022-12-30 18:18:05 -05:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
`(("share" "/")
|
|
|
|
|
("themes" "/share/"))))
|
|
|
|
|
(home-page "https://drasite.com/flat-remix-gnome")
|
|
|
|
|
(synopsis "GNOME shell theme with material design")
|
|
|
|
|
(description "Flat Remix GNOME is a GNOME shell theme inspired by material
|
|
|
|
|
design. It is mostly flat using a colorful palette with some shadows,
|
|
|
|
|
highlights, and gradients for some depth.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2023-03-13 14:43:18 -04:00
|
|
|
|
(define-public bibata-cursor-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "bibata-cursor-theme")
|
|
|
|
|
(version "2.0.3")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/ful1e5/Bibata_Cursor")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1bhspswgxizc4sr2bihfjic8wm4khd6waw9qgw0yssfy0fm3nafc"))))
|
|
|
|
|
(build-system trivial-build-system)
|
|
|
|
|
(native-inputs (list python-attrs python-clickgen))
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:modules '((guix build utils))
|
|
|
|
|
#:builder
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(let ((themes-dir (string-append #$output "/share/icons")))
|
|
|
|
|
(mkdir-p themes-dir)
|
|
|
|
|
(let loop
|
|
|
|
|
((themes '(("Bibata-Modern-Amber" . "Yellowish and rounded")
|
|
|
|
|
("Bibata-Modern-Classic" . "Black and rounded")
|
|
|
|
|
("Bibata-Modern-Ice" . "White and rounded")
|
|
|
|
|
("Bibata-Original-Amber" . "Yellowish and sharp")
|
|
|
|
|
("Bibata-Original-Classic" . "Black and sharp")
|
|
|
|
|
("Bibata-Original-Ice" . "White and sharp"))))
|
|
|
|
|
(define theme
|
|
|
|
|
(car themes))
|
|
|
|
|
(invoke (search-input-file %build-inputs "/bin/ctgen")
|
|
|
|
|
(string-append #$source "/build.toml")
|
|
|
|
|
"-p" "x11"
|
|
|
|
|
"-d" (string-append #$source "/bitmaps/" (car theme))
|
|
|
|
|
"-n" (car theme)
|
|
|
|
|
"-c" (string-append (cdr theme) " edge Bibata cursors")
|
|
|
|
|
"-o" themes-dir)
|
|
|
|
|
(unless (null? (cdr themes))
|
|
|
|
|
(loop (cdr themes))))))))
|
|
|
|
|
(home-page "https://github.com/ful1e5/Bibata_Cursor")
|
|
|
|
|
(synopsis "Open-source, compact, and material-designed cursor set")
|
|
|
|
|
(description
|
|
|
|
|
"Bibata is an open-source, compact, and material designed
|
|
|
|
|
cursor set. This project aims at improving the cursor experience.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-06-08 00:19:29 -04:00
|
|
|
|
(define-public gnome-plots
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-plots")
|
|
|
|
|
(version "0.6.2")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/alexhuntley/Plots")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"168wcsrkmvq79xmwvbq615msd4q0rg7f57xqicidnr78jx4x37rd"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
(list bash-minimal ; for wrap-program
|
|
|
|
|
gtk+
|
|
|
|
|
pango
|
|
|
|
|
python-freetype-py
|
|
|
|
|
python-jinja2
|
|
|
|
|
python-lark-parser
|
|
|
|
|
python-numpy
|
|
|
|
|
python-pycairo
|
|
|
|
|
python-pyglm
|
|
|
|
|
python-pygobject
|
|
|
|
|
python-pyopengl))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list python-pytest))
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:imported-modules `((guix build glib-or-gtk-build-system)
|
|
|
|
|
,@%python-build-system-modules)
|
|
|
|
|
#:modules '((guix build python-build-system)
|
|
|
|
|
((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(ice-9 match))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'adjust-lark-requirement
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "setup.py"
|
|
|
|
|
(("lark") "lark-parser"))))
|
|
|
|
|
(add-after 'install 'install-more
|
|
|
|
|
(lambda _
|
|
|
|
|
(let* ((datadir (string-append #$output "/share"))
|
|
|
|
|
(help (string-append datadir "/help"))
|
|
|
|
|
(icons (string-append datadir "/icons/hicolor")))
|
|
|
|
|
(map (lambda (filename)
|
|
|
|
|
(match (string-split filename #\/)
|
|
|
|
|
((_ lang dir ... name)
|
|
|
|
|
(install-file filename
|
|
|
|
|
(string-join (cons* help lang "plots" dir)
|
|
|
|
|
"/")))))
|
|
|
|
|
(find-files "help"))
|
|
|
|
|
(install-file "res/com.github.alexhuntley.Plots.desktop"
|
|
|
|
|
(string-append datadir "/applications/"))
|
|
|
|
|
(install-file "res/com.github.alexhuntley.Plots.svg"
|
|
|
|
|
(string-append icons "/scalable/apps/"))
|
|
|
|
|
(install-file "res/com.github.alexhuntley.Plots-symbolic.svg"
|
|
|
|
|
(string-append icons "/symbolic/apps/")))))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda* (#:key tests? #:allow-other-keys)
|
|
|
|
|
(when tests?
|
|
|
|
|
(invoke "pytest" "-vv"))))
|
|
|
|
|
(add-after 'wrap 'gi-wrap
|
|
|
|
|
(lambda _
|
|
|
|
|
(let ((prog (string-append #$output "/bin/plots")))
|
|
|
|
|
(wrap-program prog
|
|
|
|
|
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))
|
|
|
|
|
(add-after 'wrap 'glib-or-gtk-wrap
|
|
|
|
|
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
|
|
|
|
|
(home-page "https://apps.gnome.org/app/com.github.alexhuntley.Plots/")
|
|
|
|
|
(synopsis "Simple graph plotting")
|
|
|
|
|
(description "Plots makes it easy to visualise mathematical formulae. In
|
|
|
|
|
addition to basic arithmetic operations, it supports trigonometric,
|
|
|
|
|
hyperbolic, exponential, and logarithmic functions, as well as arbitrary sums
|
|
|
|
|
and products. Plots is designed to integrate well with the GNOME desktop and
|
|
|
|
|
takes advantage of modern hardware using OpenGL.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-11-24 11:21:26 -05:00
|
|
|
|
(define-public portfolio
|
|
|
|
|
(package
|
|
|
|
|
(name "portfolio")
|
|
|
|
|
(version "0.9.14")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/tchx84/Portfolio")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0h09v8lhz3kv6qmwjhx3gr7rp6ccfhrzm54gjnaixl4dcg9zddls"))))
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:glib-or-gtk? #t
|
|
|
|
|
#:imported-modules `(,@%meson-build-system-modules
|
|
|
|
|
(guix build python-build-system))
|
|
|
|
|
#:modules '((guix build meson-build-system)
|
|
|
|
|
((guix build python-build-system)
|
|
|
|
|
#:prefix python:)
|
|
|
|
|
(guix build utils))
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'install 'rename-executable
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion (string-append #$output
|
|
|
|
|
"/bin")
|
|
|
|
|
(symlink "dev.tchx84.Portfolio" "portfolio"))))
|
|
|
|
|
(add-after 'glib-or-gtk-wrap 'python-and-gi-wrap
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(wrap-program (search-input-file outputs
|
|
|
|
|
"bin/dev.tchx84.Portfolio")
|
|
|
|
|
`("GUIX_PYTHONPATH" =
|
|
|
|
|
(,(getenv "GUIX_PYTHONPATH") ,(python:site-packages
|
|
|
|
|
inputs
|
|
|
|
|
outputs)))
|
|
|
|
|
`("GI_TYPELIB_PATH" =
|
|
|
|
|
(,(getenv "GI_TYPELIB_PATH")))))))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(inputs (list bash-minimal python-pygobject gtk+ libhandy))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list desktop-file-utils
|
|
|
|
|
gettext-minimal
|
|
|
|
|
`(,glib "bin")
|
|
|
|
|
`(,gtk+ "bin")
|
|
|
|
|
python))
|
|
|
|
|
(home-page "https://github.com/tchx84/Portfolio")
|
|
|
|
|
(synopsis "Minimalist file manager for Linux mobile devices")
|
|
|
|
|
(description
|
|
|
|
|
"Portfolio is a minimalist file manager for those who want to use Linux
|
|
|
|
|
mobile devices. Tap to activate and long press to select, to browse, open,
|
|
|
|
|
copy, move, delete, or edit your files.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-09-21 20:20:35 -04:00
|
|
|
|
(define-public gnome-shell-extension-unite-shell
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-unite-shell")
|
2022-12-17 01:31:58 -05:00
|
|
|
|
(version "69")
|
2022-09-21 20:20:35 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/hardpixel/unite-shell")
|
2022-12-17 01:31:58 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
2022-09-21 20:20:35 -04:00
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-17 01:31:58 -05:00
|
|
|
|
"10yh6ylyp43ykcza180iak08wfypay3raqf3p0vrj9ngm98qzq70"))))
|
2022-09-21 20:20:35 -04:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(native-inputs (list `(,glib "bin") gettext-minimal))
|
|
|
|
|
(inputs (list xprop))
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:install-plan ''(("./unite@hardpixel.eu"
|
|
|
|
|
"share/gnome-shell/extensions/unite@hardpixel.eu"))
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'patch-xprop-bin
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "unite@hardpixel.eu/window.js"
|
|
|
|
|
(("xprop")
|
|
|
|
|
(string-append #$(this-package-input "xprop")
|
|
|
|
|
"/bin/xprop")))))
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "unite@hardpixel.eu/schemas"
|
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
|
|
|
|
(home-page "https://github.com/hardpixel/unite-shell")
|
|
|
|
|
(synopsis "Top panel and window decoration extension for GNOME Shell")
|
|
|
|
|
(description
|
|
|
|
|
"Unite is a GNOME Shell extension which makes a few layout
|
|
|
|
|
tweaks to the top panel and removes window decorations to make it look like
|
|
|
|
|
Ubuntu Unity Shell.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2020-01-22 14:38:30 -05:00
|
|
|
|
(define-public gnome-shell-extension-appindicator
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-appindicator")
|
2022-07-31 06:17:37 -04:00
|
|
|
|
(version "42")
|
2020-01-22 14:38:30 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url
|
gnu: Don't append '.git' to GitHub uris.
* gnu/packages/admin.scm (nmrpflash)[source]: Remove '.git' from URI.
* gnu/packages/aidc.scm (zxing-cpp),
* gnu/packages/assembly.scm (mbuild),
* gnu/packages/audio.scm (opensles, wildmidi, tinyalsa),
* gnu/packages/browser-extensions.scm (ublock-origin-chromium),
* gnu/packages/check.scm (mutest),
* gnu/packages/compression.scm (unshield),
* gnu/packages/coq.scm (subset),
* gnu/packages/dictionaries.scm (translate-shell),
* gnu/packages/disk.scm (memkind),
* gnu/packages/documentation.scm (latex2html),
* gnu/packages/emacs-xyz.scm (emacs-chronometrist,
emacs-flycheck-ledger, emacs-counsel-notmuch, emacs-spaceline,
emacs-org-generate),
* gnu/packages/embedded.scm (ebusd, ebusd-configuration),
* gnu/packages/enchant.scm (nuspell),
* gnu/packages/fontutils.scm (woff2),
* gnu/packages/geo.scm (memphis),
* gnu/packages/gimp.scm (mrg),
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator),
* gnu/packages/gnome.scm (parlatype),
* gnu/packages/golang.scm (go-github-com-tv42-httpunix,
go-github-com-ayufan-golang-kardianos-service),
* gnu/packages/graphics.scm (eglexternalplatform, egl-wayland, mmm,
directfb, flux),
* gnu/packages/gstreamer.scm (openni2, ccextractor, libvisual,
graphene),
* gnu/packages/guile-xyz.scm (guile-srfi-180, guile-torrent),
* gnu/packages/image.scm (openjpeg-data),
* gnu/packages/java.scm (javacc),
* gnu/packages/language.scm (liblouis, liblouisutdml),
* gnu/packages/linux.scm (pamela, ttyebus),
* gnu/packages/lxqt.scm (lxqt-connman-applet),
* gnu/packages/mail.scm (libetpan),
* gnu/packages/man.scm (ronn),
* gnu/packages/music.scm (tascam-gtk, artyfx),
* gnu/packages/networking.scm (srt, lksctp-tools, nng, nanomsg),
* gnu/packages/python-crypto.scm (pure-python-otr),
* gnu/packages/qt.scm (qtspell),
* gnu/packages/raspberry-pi.scm (raspi-gpio, raspi-open-firmware),
* gnu/packages/rdp.scm (freerdp),
* gnu/packages/ruby.scm (ruby-prawn-templates, ruby-treetop, ruby-gimme,
ruby-standard, ruby-rubocop-ast, ruby-rexml, ruby-range-compressor,
ruby-regexp-property-values, ruby-regexp-parser, ruby-rubocop,
ruby-pdf-reader, ruby-pdf-inspector, ruby-prawn),
* gnu/packages/syncthing.scm (syncthing-gtk),
* gnu/packages/video.scm (svt-hevc, mediasdk, libvideogfx, libde265,
tslib),
* gnu/packages/xml.scm (libxmlb, libxmlplusplus)[source]: Same.
2020-11-19 13:18:54 -05:00
|
|
|
|
"https://github.com/ubuntu/gnome-shell-extension-appindicator")
|
2020-01-22 14:38:30 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-07-31 06:17:37 -04:00
|
|
|
|
"1lf3aqb924nzhj87rhy2zvm5pcfqcklhfw21m6ic3i7wzd9r7cnc"))
|
2020-01-22 14:38:30 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
2022-07-31 06:17:37 -04:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs (list jq gnu-gettext
|
|
|
|
|
`(,glib "bin")))
|
2020-01-22 14:38:30 -05:00
|
|
|
|
(synopsis "Adds KStatusNotifierItem support to GNOME Shell")
|
|
|
|
|
(description "This extension integrates Ubuntu AppIndicators
|
|
|
|
|
and KStatusNotifierItems (KDE's successor of the systray) into
|
|
|
|
|
GNOME Shell.")
|
|
|
|
|
(home-page "https://github.com/ubuntu/gnome-shell-extension-appindicator/")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(define-public gnome-shell-extension-clipboard-indicator
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-clipboard-indicator")
|
2022-09-23 20:23:39 -04:00
|
|
|
|
(version "42")
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
2022-01-11 16:28:50 -05:00
|
|
|
|
(url
|
|
|
|
|
(string-append
|
|
|
|
|
"https://github.com/Tudmotu/"
|
|
|
|
|
"gnome-shell-extension-clipboard-indicator"))
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-23 20:23:39 -04:00
|
|
|
|
"0wf2k33pbwjdf8i4y3aw32fgvjbh751qh7504lwhnl02rcq5dc88"))
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
;; Remove pre-compiled settings schemas and translations from
|
|
|
|
|
;; source, as they are generated as part of build. Upstream
|
|
|
|
|
;; includes them for people who want to run the software
|
|
|
|
|
;; directly from source tree.
|
2022-01-11 16:28:50 -05:00
|
|
|
|
'(begin
|
|
|
|
|
(delete-file "schemas/gschemas.compiled")
|
|
|
|
|
(for-each delete-file
|
|
|
|
|
(find-files "locale" "\\.mo$"))))))
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:install-plan
|
|
|
|
|
'(("." "share/gnome-shell/extensions/clipboard-indicator@tudmotu.com"
|
|
|
|
|
#:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.mo$" "\\.xml$")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
2022-01-11 16:28:50 -05:00
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(native-inputs
|
2022-01-11 16:28:50 -05:00
|
|
|
|
(list `(,glib "bin") gettext-minimal))
|
2020-05-05 16:12:55 -04:00
|
|
|
|
(home-page "https://github.com/Tudmotu/gnome-shell-extension-clipboard-indicator")
|
|
|
|
|
(synopsis "Clipboard manager extension for GNOME Shell")
|
|
|
|
|
(description "Clipboard Indicator is a clipboard manager for GNOME Shell
|
|
|
|
|
that caches clipboard history.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2021-11-21 01:10:32 -05:00
|
|
|
|
(define-public gnome-shell-extension-customize-ibus
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-customize-ibus")
|
2022-03-18 05:46:06 -04:00
|
|
|
|
(version "82")
|
2021-11-21 01:10:32 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/openSUSE/Customize-IBus.git")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2022-03-18 05:46:06 -04:00
|
|
|
|
(base32 "00brnyahphl4ql9yh74wpb9kmzyb4b5k4rkw40hvxvqw4qwgs24r"))))
|
2021-11-21 01:10:32 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list (string-append "VERSION=" ,version)
|
|
|
|
|
(string-append "INSTALLBASE=" (assoc-ref %outputs "out")
|
|
|
|
|
"/share/gnome-shell/extensions"))
|
|
|
|
|
#:tests? #f ; No test target
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
|
("glib:bin" ,glib "bin")))
|
|
|
|
|
(home-page "https://github.com/openSUSE/Customize-IBus")
|
|
|
|
|
(synopsis "GNOME Shell Extension for IBus Customization")
|
|
|
|
|
(description "Customize IBus provides full customization of appearance,
|
|
|
|
|
behavior, system tray and input source indicator for IBus.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2020-03-20 15:34:51 -04:00
|
|
|
|
(define-public gnome-shell-extension-topicons-redux
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-topicons-redux")
|
|
|
|
|
(version "6")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/pop-planet/TopIcons-Redux.git")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1dli9xb545n3xlj6q4wl0y5gzkm903zs47p8fiq71pdvbr6v38rj"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list `(,glib "bin")))
|
2020-03-20 15:34:51 -04:00
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f ;no test defined in the project
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(delete 'build)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(invoke "make"
|
|
|
|
|
"install"
|
|
|
|
|
(string-append
|
|
|
|
|
"INSTALL_PATH="
|
|
|
|
|
out
|
|
|
|
|
"/share/gnome-shell/extensions"))))))))
|
|
|
|
|
(home-page "https://gitlab.com/pop-planet/TopIcons-Redux")
|
|
|
|
|
(synopsis "Display legacy tray icons in the GNOME Shell top panel")
|
|
|
|
|
(description "Many applications, such as chat clients, downloaders, and
|
|
|
|
|
some media players, are meant to run long-term in the background even after you
|
|
|
|
|
close their window. These applications remain accessible by adding an icon to
|
|
|
|
|
the GNOME Shell Legacy Tray. However, the Legacy Tray was removed in GNOME
|
|
|
|
|
3.26. TopIcons Redux brings those icons back into the top panel so that it's
|
gnu: Fix typoes in package descriptions.
* gnu/packages/audio.scm (caps-plugins-lv2)[synopsis]: Fix typo.
* gnu/packages/bioconductor.scm (r-karyoploter, r-anota, r-gcrma)
(r-bigmemoryextras)[description]: Likewise.
* gnu/packages/cran.scm (r-geometry)[synopsis]: Likewise.
(r-stringdist, r-patchwork, r-depth, r-tea)[description]: Likewise.
* gnu/packages/crates-io.scm (rust-assert-fs-0.11, rust-notify-4)
(rust-tokio-fs-0.1)[synopsis, description]: Likewise.
(rust-blas-sys-0.7)[description]: Likewise.
(rust-fs-extra-1.1, rust-xattr-0.2)[synopsis]: Likewise.
* gnu/packages/databases.scm (perl-mysql-config)[description]: Likewise.
* gnu/packages/disk.scm (hddtemp)[description]: Likewise.
* gnu/packages/django.scm (python-djangorestframework)[description]:
Likewise.
* gnu/packages/documentation.scm (doc++)[description]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-kakoune, emacs-pyim-basedict, eless)
(emacs-scpaste)[description]: Likewise.
* gnu/packages/file-systems.scm (dbxfs)[description]: Likewise.
* gnu/packages/finance.scm (python-stdnum)[description]: Likewise.
* gnu/packages/fontutils.scm (woff2)[description]: Likewise.
* gnu/packages/games.scm (openttd-opengfx)[description]: Likewise.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-topicons-redux)
[description]: Likewise.
* gnu/packages/gnome.scm (libgrss)[description]: Likewise.
* gnu/packages/golang.scm (go-github-com-mitchellh-reflectwalk)
[description]: Likewise.
(go-github-com-go-git-go-billy)[synopsis, description]: Likewise.
* gnu/packages/haskell-check.scm (ghc-inspection-testing)[description]:
Likewise.
* gnu/packages/haskell-web.scm (ghc-yesod-form)[description]: Likewise.
* gnu/packages/haskell-xyz.scm (ghc-hex)[description]: Likewise.
* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519)[description]:
Likewise.
* gnu/packages/java.scm (java-mail)[synopsis]: Likewise.
(java-native-access-platform)[description]: Likewise.
* gnu/packages/kde-frameworks.scm (kactivities-stats)[description]:
Likewise.
* gnu/packages/kde-utils.scm (krusader)[description]: Likewise.
* gnu/packages/language.scm (praat)[description]: Likewise.
* gnu/packages/linux.scm (light)[description]: Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-hu.dwim.defclass-star)[description]:
Likewise.
* gnu/packages/mail.scm (dovecot-trees, sieve-connect)[description]:
Likewise.
* gnu/packages/ocaml.scm (ocaml-opam-file-format, ocaml-cppo)
(ocaml4.07-ppx-variants-conv)[description]: Likewise.
* gnu/packages/perl.scm (perl-convert-binhex)[description]: Likewise.
* gnu/packages/python-crypto.scm (python-ecdsa)[description]: Likewise.
* gnu/packages/python-web.scm (python-html5lib)[synopsis, description]:
Likewise.
(python-venusian)[synopsis]: Likewise.
* gnu/packages/python-xyz.scm (python-readlike, python-gssapi)
(python-flufl-i18n)[description]: Likewise.
(python-pox, python-watchdog, python-xattr)[synopsis, description]:
Likewise.
* gnu/packages/ruby.scm (ruby-sorcerer)[description]: Likewise.
* gnu/packages/rust-apps.scm (watchexec)[description]: Likewise.
* gnu/packages/rust.scm (mrustc)[synopsis]: Likewise.
* gnu/packages/shells.scm (s-shell)[description]: Likewise.
* gnu/packages/ssh.scm (sshpass)[description]: Likewise.
* gnu/packages/terminals.scm (beep)[description]: Likewise.
* gnu/packages/web.scm (perl-lwp-useragent-cached)[description]:
Likewise.
* gnu/packages/wv.scm (wv)[description]: Likewise.
2020-09-22 15:31:52 -04:00
|
|
|
|
easier to keep track of applications running in the background.")
|
2020-03-20 15:34:51 -04:00
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(define-public gnome-shell-extension-dash-to-dock
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-dash-to-dock")
|
2022-09-18 11:38:49 -04:00
|
|
|
|
(version "73")
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/micheleg/dash-to-dock")
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(commit (string-append "extensions.gnome.org-v"
|
|
|
|
|
version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-18 11:38:49 -04:00
|
|
|
|
"1l0isbrgfc8v46l1yc5l4myz7qnlxzyfyiifipp86z9d79d8klzw"))
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f
|
|
|
|
|
#:make-flags (list (string-append "INSTALLBASE="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/gnome-shell/extensions"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(native-inputs
|
2019-12-22 10:10:04 -05:00
|
|
|
|
`(("glib:bin" ,glib "bin")
|
|
|
|
|
("intltool" ,intltool)
|
2021-12-15 14:26:10 -05:00
|
|
|
|
("pkg-config" ,pkg-config)
|
|
|
|
|
("sassc" ,sassc)))
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib))
|
2019-11-07 13:20:44 -05:00
|
|
|
|
(synopsis "Transforms GNOME's dash into a dock")
|
|
|
|
|
(description "This extension moves the dash out of the
|
|
|
|
|
overview, transforming it into a dock for easier application launching and
|
|
|
|
|
faster window switching.")
|
|
|
|
|
(home-page "https://micheleg.github.io/dash-to-dock/")
|
|
|
|
|
(license license:gpl2+)))
|
2019-11-07 04:22:02 -05:00
|
|
|
|
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(define-public gnome-shell-extension-gsconnect
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-gsconnect")
|
2022-09-26 00:29:00 -04:00
|
|
|
|
(version "50") ; See GNOME Shell supported versions in metadata.json
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
2022-09-26 00:29:00 -04:00
|
|
|
|
(url (string-append "https://github.com/GSConnect"
|
2020-02-21 17:25:27 -05:00
|
|
|
|
"/gnome-shell-extension-gsconnect.git"))
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-26 00:29:00 -04:00
|
|
|
|
"0vg87fdihs5kp7apgyd32ldjmwzmrxaimsc005yjyy8m3f65sjmr"))))
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(arguments
|
2022-02-13 11:15:55 -05:00
|
|
|
|
`(#:tests? #f ;; every test fails
|
|
|
|
|
#:configure-flags
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(let* ((out (assoc-ref %outputs "out"))
|
|
|
|
|
(name+version (strip-store-file-name out))
|
|
|
|
|
(gschema-dir (string-append out
|
|
|
|
|
"/share/gsettings-schemas/"
|
|
|
|
|
name+version
|
|
|
|
|
"/glib-2.0/schemas"))
|
|
|
|
|
(gnome-shell (assoc-ref %build-inputs "gnome-shell"))
|
|
|
|
|
(openssh (assoc-ref %build-inputs "openssh"))
|
|
|
|
|
(openssl (assoc-ref %build-inputs "openssl")))
|
|
|
|
|
(list
|
|
|
|
|
(string-append "-Dgnome_shell_libdir=" gnome-shell "/lib")
|
|
|
|
|
(string-append "-Dgsettings_schemadir=" gschema-dir)
|
|
|
|
|
(string-append "-Dopenssl_path=" openssl "/bin/openssl")
|
|
|
|
|
(string-append "-Dsshadd_path=" openssh "/bin/ssh-add")
|
|
|
|
|
(string-append "-Dsshkeygen_path=" openssh "/bin/ssh-keygen")
|
|
|
|
|
(string-append "-Dsession_bus_services_dir=" out "/share/dbus-1/services")
|
|
|
|
|
"-Dpost_install=true"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'fix-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((glib (assoc-ref inputs "glib:bin"))
|
|
|
|
|
(gapplication (string-append glib "/bin/gapplication"))
|
|
|
|
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
2022-02-13 11:15:55 -05:00
|
|
|
|
(substitute* "data/org.gnome.Shell.Extensions.GSConnect.desktop.in"
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(("gapplication") gapplication))
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(substitute* file
|
|
|
|
|
(("'use strict';")
|
|
|
|
|
(string-append "'use strict';\n\n"
|
|
|
|
|
"'" gi-typelib-path "'.split(':').forEach("
|
|
|
|
|
"path => imports.gi.GIRepository.Repository."
|
|
|
|
|
"prepend_search_path(path));"))))
|
|
|
|
|
'("src/extension.js" "src/prefs.js"))
|
|
|
|
|
#t)))
|
|
|
|
|
(add-after 'install 'wrap-daemons
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(service-dir
|
|
|
|
|
(string-append out "/share/gnome-shell/extensions"
|
|
|
|
|
"/gsconnect@andyholmes.github.io/service"))
|
|
|
|
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
|
|
|
|
(wrap-program (string-append service-dir "/daemon.js")
|
|
|
|
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("at-spi2-core" ,at-spi2-core)
|
|
|
|
|
("caribou" ,caribou)
|
|
|
|
|
("evolution-data-server" ,evolution-data-server)
|
|
|
|
|
("gjs" ,gjs)
|
|
|
|
|
("glib" ,glib)
|
|
|
|
|
("glib:bin" ,glib "bin")
|
|
|
|
|
("gsound" ,gsound)
|
|
|
|
|
("gnome-shell" ,gnome-shell)
|
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
|
("nautilus" ,nautilus)
|
|
|
|
|
("openssh" ,openssh)
|
|
|
|
|
("openssl" ,openssl)
|
|
|
|
|
("python-pygobject" ,python-pygobject)
|
|
|
|
|
("upower" ,upower)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("gettext" ,gettext-minimal)
|
|
|
|
|
("gobject-introspection" ,gobject-introspection)
|
|
|
|
|
("libxml2" ,libxml2)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
2022-09-26 00:29:00 -04:00
|
|
|
|
(home-page "https://github.com/GSConnect/gnome-shell-extension-gsconnect/wiki")
|
2020-02-21 17:25:27 -05:00
|
|
|
|
(synopsis "Connect GNOME Shell with your Android phone")
|
|
|
|
|
(description "GSConnect is a complete implementation of KDE Connect
|
|
|
|
|
especially for GNOME Shell, allowing devices to securely share content, like
|
|
|
|
|
notifications or files, and other features like SMS messaging and remote
|
|
|
|
|
control.")
|
|
|
|
|
(license license:gpl2)))
|
|
|
|
|
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(define-public gnome-shell-extension-hide-app-icon
|
|
|
|
|
(let ((commit "4188aa5f4ba24901a053a0c3eb0d83baa8625eab")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-hide-app-icon")
|
|
|
|
|
(version (git-version "2.7" revision commit))
|
|
|
|
|
(source
|
2019-12-22 10:03:43 -05:00
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/michael-rapp"
|
|
|
|
|
"/gnome-shell-extension-hide-app-icon.git"))
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1i28n4bz6wrhn07vpxkr6l1ljyn7g8frp5xrr11z3z32h2hxxcd6"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ; no test target
|
|
|
|
|
#:make-flags (list (string-append "EXTENSIONS_DIR="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/gnome-shell/extensions"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure) ; no configure script
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2019-12-22 10:03:43 -05:00
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(pre "/share/gnome-shell/extensions/")
|
|
|
|
|
(dir "hide-app-icon@mrapp.sourceforge.com"))
|
|
|
|
|
(copy-recursively dir (string-append out pre dir))
|
|
|
|
|
#t))))))
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list `(,glib "bin") intltool))
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib))
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(synopsis "Hide app icon from GNOME's panel")
|
2020-04-12 17:04:20 -04:00
|
|
|
|
(description "This extension hides the icon and/or title of the
|
2019-12-08 15:12:50 -05:00
|
|
|
|
currently focused application in the top panel of the GNOME shell.")
|
2019-12-22 10:03:43 -05:00
|
|
|
|
(home-page
|
|
|
|
|
"https://github.com/michael-rapp/gnome-shell-extension-hide-app-icon/")
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(license
|
2019-12-22 10:03:43 -05:00
|
|
|
|
;; README.md and LICENSE.txt disagree -- the former claims v3, the
|
|
|
|
|
;; latter v2. No mention of "or later" in either place or in the code.
|
2019-12-08 15:12:50 -05:00
|
|
|
|
(list license:gpl2
|
|
|
|
|
license:gpl3)))))
|
|
|
|
|
|
2021-12-15 14:40:27 -05:00
|
|
|
|
(define-public gnome-shell-extension-just-perfection
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-just-perfection")
|
2022-09-18 12:48:05 -04:00
|
|
|
|
(version "22.0")
|
2021-12-15 14:40:27 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.gnome.org/jrahmatzadeh/just-perfection/")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-09-18 12:48:05 -04:00
|
|
|
|
"0r4rflppcp05kwhzmh07dzi7znc4kch4nc8mzw61arj3qsfq2qqj"))))
|
2021-12-15 14:40:27 -05:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
'(("src"
|
|
|
|
|
"share/gnome-shell/extensions/just-perfection-desktop@just-perfection"
|
|
|
|
|
#:include-regexp ("\\.css$" "\\.compiled$" "\\.js(on)?$" "\\.ui$"))
|
|
|
|
|
("locale"
|
|
|
|
|
"share/gnome-shell/extensions/just-perfection-desktop@just-perfection/"))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'drop-executable-bits
|
|
|
|
|
(lambda _
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(let ((stat (lstat file)))
|
|
|
|
|
(chmod file (logand (stat:mode stat) (lognot #o111)))))
|
|
|
|
|
(find-files "." #:directories? #f))))
|
|
|
|
|
(add-before 'install 'build
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "glib-compile-schemas" "src/schemas")
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(let* ((base (basename file))
|
|
|
|
|
(noext (substring base 0 (- (string-length base) 3)))
|
|
|
|
|
(dest (string-append "locale/" noext "/LC_MESSAGES/"))
|
|
|
|
|
(out (string-append dest "just-perfection.mo")))
|
|
|
|
|
(mkdir-p dest)
|
|
|
|
|
(invoke "msgfmt" "-c" file "-o" out)))
|
|
|
|
|
(find-files "po" "\\.po$")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list `(,glib "bin") gettext-minimal))
|
|
|
|
|
(home-page "https://gitlab.gnome.org/jrahmatzadeh/just-perfection")
|
|
|
|
|
(synopsis "Customize GNOME Shell behaviour")
|
|
|
|
|
(description "Just Perfection allows you to change various settings, that
|
|
|
|
|
GNOME Shell itself does not provide out of the box, such as the ability to hide
|
|
|
|
|
certain elements or change animation speeds.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(define-public gnome-shell-extension-dash-to-panel
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-dash-to-panel")
|
2023-07-10 17:43:42 -04:00
|
|
|
|
(version "56")
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/home-sweet-gnome/dash-to-panel")
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2023-07-10 17:43:42 -04:00
|
|
|
|
"17rm3wjj8zfdxgh5vp5f35vgd4mc9f9c2w77hac4vyvkgvwfzcnn"))
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:tests? #f
|
|
|
|
|
#:make-flags (list (string-append "INSTALLBASE="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/gnome-shell/extensions")
|
|
|
|
|
(string-append "VERSION="
|
|
|
|
|
,(package-version
|
|
|
|
|
gnome-shell-extension-dash-to-panel)))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list intltool pkg-config))
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib
|
|
|
|
|
`(,glib "bin")))
|
2019-12-11 16:01:00 -05:00
|
|
|
|
(synopsis "Icon taskbar for GNOME Shell")
|
|
|
|
|
(description "This extension moves the dash into the gnome main
|
|
|
|
|
panel so that the application launchers and system tray are combined
|
|
|
|
|
into a single panel, similar to that found in KDE Plasma and Windows 7+.")
|
|
|
|
|
(home-page "https://github.com/home-sweet-gnome/dash-to-panel/")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2019-11-07 04:22:02 -05:00
|
|
|
|
(define-public gnome-shell-extension-noannoyance
|
2022-09-18 13:14:45 -04:00
|
|
|
|
(let ((revision "1")
|
|
|
|
|
(commit "b759d10fd2799bc084007fdd927b62637c3dbd2c"))
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-noannoyance")
|
|
|
|
|
;; XXX: There is no version noted anywhere in the source. Thus, infer it
|
|
|
|
|
;; from <https://extensions.gnome.org/extension/2182/noannoyance/>.
|
|
|
|
|
(version (git-version "16" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/bdaase/noannoyance")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0hh7fdqvx54h9j41ia2jl0nq1d5i66k7blw41ya6hkh7201r4anp"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:install-plan
|
|
|
|
|
'(("." "share/gnome-shell/extensions/noannoyance@daase.net"))))
|
|
|
|
|
(synopsis "Remove 'Window is ready' annotation")
|
|
|
|
|
(description "One of the many extensions that remove this message.
|
2019-11-07 04:22:02 -05:00
|
|
|
|
It uses ES6 syntax and claims to be more actively maintained than others.")
|
2022-09-18 13:14:45 -04:00
|
|
|
|
(home-page "https://extensions.gnome.org/extension/2182/noannoyance/")
|
|
|
|
|
(license license:gpl2))))
|
2019-11-09 07:48:59 -05:00
|
|
|
|
|
2020-02-19 16:46:55 -05:00
|
|
|
|
(define-public gnome-shell-extension-paperwm
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-paperwm")
|
2020-03-22 12:11:32 -04:00
|
|
|
|
(version "36.0")
|
2020-02-19 16:46:55 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/paperwm/PaperWM")
|
2020-02-19 16:46:55 -05:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-03-22 12:11:32 -04:00
|
|
|
|
"1ssnabwxrns36c61ppspjkr9i3qifv08pf2jpwl7cjv3pvyn4kly"))
|
2020-02-21 09:20:58 -05:00
|
|
|
|
(snippet
|
|
|
|
|
'(begin (delete-file "schemas/gschemas.compiled")))))
|
2020-02-19 16:46:55 -05:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:install-plan
|
|
|
|
|
'(("." "share/gnome-shell/extensions/paperwm@hedning:matrix.org"
|
2020-02-21 13:45:32 -05:00
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
|
|
|
|
|
"\\.xml$" "\\.compiled$")))
|
2020-02-21 09:20:58 -05:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
|
|
|
|
(invoke "make"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("glib:bin" ,glib "bin"))) ; for glib-compile-schemas
|
2020-02-19 16:46:55 -05:00
|
|
|
|
(home-page "https://github.com/paperwm/PaperWM")
|
|
|
|
|
(synopsis "Tiled scrollable window management for GNOME Shell")
|
|
|
|
|
(description "PaperWM is an experimental GNOME Shell extension providing
|
|
|
|
|
scrollable tiling of windows and per monitor workspaces. It's inspired by paper
|
|
|
|
|
notebooks and tiling window managers.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(define-public gpaste
|
|
|
|
|
(package
|
|
|
|
|
(name "gpaste")
|
2022-12-06 12:46:40 -05:00
|
|
|
|
(version "42.2")
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/Keruspe/GPaste")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-06 12:46:40 -05:00
|
|
|
|
"0qq2p19p3r3lz8yfynpnf36cipv54bzdbmq1x5zgwhyl4yl41g28"))
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(patches
|
|
|
|
|
(search-patches "gpaste-fix-paths.patch"))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs
|
2022-12-06 12:46:40 -05:00
|
|
|
|
(list gcr
|
|
|
|
|
gettext-minimal
|
2022-09-12 14:24:06 -04:00
|
|
|
|
gobject-introspection
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(list glib "bin") ; for glib-compile-resources
|
2022-09-12 14:24:06 -04:00
|
|
|
|
pkg-config
|
|
|
|
|
vala))
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(inputs
|
2022-09-12 14:24:06 -04:00
|
|
|
|
(list appstream-glib
|
|
|
|
|
gjs
|
|
|
|
|
gtk
|
|
|
|
|
mutter
|
|
|
|
|
libadwaita
|
|
|
|
|
libarchive))
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(arguments
|
2022-09-12 14:24:06 -04:00
|
|
|
|
(list #:glib-or-gtk? #true
|
2022-01-07 07:50:30 -05:00
|
|
|
|
#:configure-flags
|
|
|
|
|
#~(list
|
|
|
|
|
(string-append "-Dcontrol-center-keybindings-dir="
|
|
|
|
|
#$output "/share/gnome-control-center/keybindings")
|
|
|
|
|
(string-append "-Ddbus-services-dir="
|
|
|
|
|
#$output "/share/dbus-1/services")
|
|
|
|
|
(string-append "-Dsystemd-user-unit-dir="
|
|
|
|
|
#$output "/etc/systemd/user"))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-introspection-install-dir
|
2022-09-12 14:24:06 -04:00
|
|
|
|
(lambda _
|
2022-12-06 12:44:44 -05:00
|
|
|
|
(substitute* "src/libgpaste/gpaste/gpaste-settings.c"
|
|
|
|
|
(("@gschemasCompiled@")
|
|
|
|
|
(string-append #$output "/share/glib-2.0/schemas/")))
|
2022-09-12 14:24:06 -04:00
|
|
|
|
(substitute* '("src/gnome-shell/extension.js"
|
|
|
|
|
"src/gnome-shell/prefs.js")
|
|
|
|
|
(("@typelibPath@")
|
|
|
|
|
(string-append #$output "/lib/girepository-1.0/"))))))))
|
2022-01-07 07:50:30 -05:00
|
|
|
|
(home-page "https://github.com/Keruspe/GPaste")
|
|
|
|
|
(synopsis "Clipboard management system for GNOME Shell")
|
|
|
|
|
(description "GPaste is a clipboard manager, a tool which allows you to
|
|
|
|
|
keep a trace of what you’re copying and pasting. Is is really useful when
|
|
|
|
|
you go through tons of documentation and you want to keep around a bunch of
|
|
|
|
|
functions you might want to use, for example. The clipboard manager will
|
|
|
|
|
store an history of everything you do, so that you can get back to older
|
|
|
|
|
copies you now want to paste.")
|
|
|
|
|
(license license:bsd-2)))
|
|
|
|
|
|
2022-01-11 16:24:08 -05:00
|
|
|
|
(define-public gnome-shell-extension-vertical-overview
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-vertical-overview")
|
2022-12-17 01:43:13 -05:00
|
|
|
|
(version "10")
|
2022-01-11 16:24:08 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/RensAlthuis/vertical-overview")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-17 01:43:13 -05:00
|
|
|
|
"1sqkbg93qqrq47wyfnh2flg7dpsmv5c2pmkx8kgqhnbl7j2kgi0l"))
|
2022-01-11 16:24:08 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin (delete-file "schemas/gschemas.compiled")))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
'(("." ,(string-append
|
|
|
|
|
"share/gnome-shell/extensions/"
|
|
|
|
|
"vertical-overview@RensAlthuis.github.com")
|
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
|
|
|
|
|
"\\.xml$" "\\.compiled$")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list `(,glib "bin"))) ; for glib-compile-resources
|
|
|
|
|
(home-page "https://github.com/RensAlthuis/vertical-overview")
|
|
|
|
|
(synopsis "Provides a vertical overview in Gnome 40 and upper")
|
|
|
|
|
(description "This Gnome extension replaces the new horizontally oriented
|
|
|
|
|
Gnome overview with something that resembles the old vertically oriented
|
|
|
|
|
style.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-01-11 16:26:11 -05:00
|
|
|
|
(define-public gnome-shell-extension-jiggle
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-jiggle")
|
|
|
|
|
(version "8")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/jeffchannell/jiggle/")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1wbdx2bp22bdwj51ckgivwglkmckr7z8kfwvc8nv4y376hjz5jxz"))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin (delete-file "schemas/gschemas.compiled")))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
'(("." ,(string-append
|
|
|
|
|
"share/gnome-shell/extensions/"
|
|
|
|
|
"jiggle@jeffchannell.com")
|
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
|
|
|
|
|
"\\.xml$" "\\.compiled$")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'fix-version
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "metadata.json"
|
|
|
|
|
(("\"40.0\"") "\"40\", \"41\""))))
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list `(,glib "bin"))) ; for glib-compile-resources
|
|
|
|
|
(home-page "https://github.com/jeffchannell/jiggle")
|
2022-01-14 20:48:51 -05:00
|
|
|
|
(synopsis "Mouse cursor enlargement for small and fast movements")
|
2022-01-11 16:26:11 -05:00
|
|
|
|
(description "Jiggle is a Gnome Shell extension that highlights the cursor
|
|
|
|
|
position when the mouse is moved rapidly.")
|
|
|
|
|
(license license:gpl2)))
|
|
|
|
|
|
2022-01-11 16:26:38 -05:00
|
|
|
|
(define-public gnome-shell-extension-burn-my-windows
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-burn-my-windows")
|
2022-12-17 01:53:46 -05:00
|
|
|
|
(version "22")
|
2022-01-11 16:26:38 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/Schneegans/Burn-My-Windows/")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-17 01:53:46 -05:00
|
|
|
|
"185xrf330d9bflmk0l61cnzlylnppb2v4yz6v6ygkk4zpwyil8np"))
|
2022-01-11 16:26:38 -05:00
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
'(("." ,(string-append
|
|
|
|
|
"share/gnome-shell/extensions/"
|
|
|
|
|
"burn-my-windows@schneegans.github.com")
|
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
|
|
|
|
|
"\\.xml$" "\\.compiled$" "\\.gresource$")))
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'compile-resources
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "make" "resources/burn-my-windows.gresource")))
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list `(,glib "bin"))) ; for glib-compile-resources
|
|
|
|
|
(home-page "https://github.com/Schneegans/Burn-My-Windows")
|
|
|
|
|
(synopsis "Application closing effects extension")
|
|
|
|
|
(description "Burn My Windows is a shell extension that stylizes the
|
|
|
|
|
animation of closing windowed applications.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-01-19 11:19:24 -05:00
|
|
|
|
(define-public gnome-shell-extension-blur-my-shell
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-blur-my-shell")
|
2022-10-19 00:04:24 -04:00
|
|
|
|
(version "44")
|
2022-01-19 11:19:24 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/aunetx/blur-my-shell")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-10-19 00:04:24 -04:00
|
|
|
|
"0h7yfvrrg5r821mzrp42c09jws06mw6v9avvkfykqj8n8qnslmyx"))))
|
2022-01-19 11:19:24 -05:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
2022-10-19 00:04:24 -04:00
|
|
|
|
'(#:install-plan
|
|
|
|
|
(let ((extension "share/gnome-shell/extensions/blur-my-shell@aunetx"))
|
|
|
|
|
`(("src/" ,extension)
|
|
|
|
|
("resources/" ,extension
|
|
|
|
|
#:include-regexp ("\\.svg$" "\\.ui"))
|
|
|
|
|
("." ,extension
|
|
|
|
|
#:exclude-regexp ("src/" "resources/")
|
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$" "\\.ui$" "\\.png$"
|
|
|
|
|
"\\.xml$" "\\.compiled$"))))
|
2022-01-19 11:19:24 -05:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2022-10-19 00:04:24 -04:00
|
|
|
|
(add-after 'unpack 'compile-schemas
|
2022-01-19 11:19:24 -05:00
|
|
|
|
(lambda _
|
|
|
|
|
(with-directory-excursion "schemas"
|
|
|
|
|
(invoke "glib-compile-schemas" ".")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list (list glib "bin"))) ; for glib-compile-schemas
|
|
|
|
|
(home-page "https://github.com/aunetx/blur-my-shell")
|
|
|
|
|
(synopsis "Blurs different parts of the GNOME Shell")
|
|
|
|
|
(description "Blur My Shell adds a blur look to different parts of the
|
|
|
|
|
GNOME Shell, including the top panel, dash and overview.")
|
|
|
|
|
(license license:gpl3)))
|
|
|
|
|
|
2022-06-22 02:07:21 -04:00
|
|
|
|
(define-public gnome-shell-extension-radio
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-radio")
|
2022-12-17 00:56:46 -05:00
|
|
|
|
(version "20")
|
2022-06-22 02:07:21 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url
|
|
|
|
|
"https://github.com/hslbck/gnome-shell-extension-radio")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-17 00:56:46 -05:00
|
|
|
|
"01dmziad9g7bs3hr59aaz3mivkc6rqfyb9bz2v202zk22vcr5a2y"))))
|
2022-06-22 02:07:21 -04:00
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:install-plan #~'(("radio@hslbck.gmail.com"
|
|
|
|
|
"/share/gnome-shell/extensions/"))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'glib-compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "glib-compile-schemas"
|
|
|
|
|
"radio@hslbck.gmail.com/schemas"))))))
|
|
|
|
|
(native-inputs (list `(,glib "bin")))
|
|
|
|
|
(home-page "https://github.com/hslbck/gnome-shell-extension-radio")
|
|
|
|
|
(synopsis "Internet radio for GNOME Shell")
|
|
|
|
|
(description "This extension implements an internet radio player
|
|
|
|
|
directly inside GNOME Shell. It can manage stations and play streams.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-06-22 02:08:04 -04:00
|
|
|
|
(define-public gnome-shell-extension-sound-output-device-chooser
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-sound-output-device-chooser")
|
|
|
|
|
(version "43")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/kgshank/gse-sound-output-device-chooser")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1qk6ypyqbv8zwwlky6cgk9hgp1zh32jmzw4wza200g4v94ifkwm9"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:tests? #f ; no check target
|
|
|
|
|
#:make-flags #~(list (string-append "INSTALL_DIR="
|
|
|
|
|
#$output
|
|
|
|
|
"/share/gnome-shell/extensions"))
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases (delete 'configure))))
|
|
|
|
|
(native-inputs (list gettext-minimal `(,glib "bin")))
|
|
|
|
|
(inputs (list python))
|
|
|
|
|
(home-page
|
|
|
|
|
"https://extensions.gnome.org/extension/906/sound-output-device-chooser")
|
|
|
|
|
(synopsis "Sound output chooser for GNOME Shell")
|
|
|
|
|
(description "This extension shows a list of sound output and input devices
|
|
|
|
|
in the status menu below the volume slider. Various active ports like HDMI,
|
|
|
|
|
Speakers etc. of the same device are also displayed for selection.")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2022-06-22 02:09:28 -04:00
|
|
|
|
(define-public gnome-shell-extension-transparent-window
|
|
|
|
|
(let ((commit "cc9bc70c192dd565fa6f1d1b28d9a20f99684f2a")
|
|
|
|
|
(revision "45"))
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-transparent-window")
|
|
|
|
|
(version (git-version "0" revision commit))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/pbxqdown/"
|
|
|
|
|
"gnome-shell-extension-transparent-window"))
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1f9iqqjpmmylqz0ws8cy5rs475bwzi7jy44q9ip44ig2acz2wxzp"))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:install-plan
|
|
|
|
|
#~'(("."
|
|
|
|
|
#$(string-append "/share/gnome-shell/extensions"
|
|
|
|
|
"/transparent-window@pbxqdown.github.com")))))
|
|
|
|
|
(home-page
|
|
|
|
|
"https://github.com/pbxqdown/gnome-shell-extension-transparent-window")
|
|
|
|
|
(synopsis "Change the opacity of windows in GNOME Shell")
|
|
|
|
|
(description "This extension adds keybindings to change the opacity
|
|
|
|
|
of windows.")
|
|
|
|
|
(license license:expat))))
|
|
|
|
|
|
2023-07-06 05:10:01 -04:00
|
|
|
|
(define-public gnome-shell-extension-vitals
|
|
|
|
|
(package
|
|
|
|
|
(name "gnome-shell-extension-vitals")
|
|
|
|
|
(version "62.0.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/corecoding/Vitals")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0wmw5yd38vyv13x6frbafp21bdhlyjd5ggimdf2696irfhnm828h"))
|
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet '(begin
|
|
|
|
|
(delete-file "schemas/gschemas.compiled")
|
|
|
|
|
(for-each delete-file
|
|
|
|
|
(find-files "locale" "\\.mo$"))))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(native-inputs (list `(,glib "bin") gettext-minimal))
|
|
|
|
|
(inputs (list libgtop))
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:modules '((guix build copy-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(ice-9 string-fun))
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'compile-schemas
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "glib-compile-schemas" "--strict"
|
|
|
|
|
"schemas")))
|
|
|
|
|
(add-before 'install 'compile-locales
|
|
|
|
|
(lambda _
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(let ((destfile (string-replace-substring
|
|
|
|
|
file ".po" ".mo")))
|
|
|
|
|
(invoke "msgfmt" "-c" file "-o"
|
|
|
|
|
destfile)))
|
|
|
|
|
(find-files "locale" "\\.po$")))))
|
|
|
|
|
#:install-plan #~'(("."
|
|
|
|
|
"share/gnome-shell/extensions/Vitals@CoreCoding.com"
|
|
|
|
|
#:include-regexp ("\\.js(on)?$" "\\.css$"
|
|
|
|
|
"\\.ui$"
|
|
|
|
|
"\\.svg$"
|
|
|
|
|
"\\.xml$"
|
|
|
|
|
"\\.mo$"
|
|
|
|
|
"\\.compiled$")))))
|
|
|
|
|
(home-page "https://github.com/corecoding/Vitals")
|
|
|
|
|
(synopsis
|
|
|
|
|
"GNOME Shell extension displaying computer resource/sensor stats")
|
|
|
|
|
(description
|
|
|
|
|
"Vitals is a GNOME Shell extension that can display the computer
|
|
|
|
|
temperature, voltage, fan speed, memory usage and CPU load from the top menu
|
|
|
|
|
bar of the GNOME Shell.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2021-01-02 17:56:30 -05:00
|
|
|
|
(define-public arc-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "arc-theme")
|
2022-12-31 08:37:20 -05:00
|
|
|
|
(version "20221218")
|
2021-01-02 17:56:30 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/jnsh/arc-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-31 08:37:20 -05:00
|
|
|
|
"0yznqjz1a1mcwks8z7pybgzrjiwg978bfpdmkaq926wy82qslngd"))))
|
2021-10-04 11:50:42 -04:00
|
|
|
|
(build-system meson-build-system)
|
2021-01-02 17:56:30 -05:00
|
|
|
|
(arguments
|
|
|
|
|
'(#:configure-flags
|
2022-12-31 08:37:20 -05:00
|
|
|
|
'("-Dthemes=gnome-shell,gtk2,gtk3,gtk4,metacity,plank,unity,xfwm")
|
2021-01-02 17:56:30 -05:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'set-home ;placate Inkscape
|
|
|
|
|
(lambda _
|
2022-09-12 00:29:55 -04:00
|
|
|
|
(setenv "HOME" (getcwd)))))))
|
2021-01-02 17:56:30 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list `(,glib "bin") ; for glib-compile-resources
|
|
|
|
|
gnome-shell
|
|
|
|
|
gtk+
|
2022-07-12 15:54:59 -04:00
|
|
|
|
inkscape/stable
|
2021-12-13 11:18:24 -05:00
|
|
|
|
optipng
|
|
|
|
|
pkg-config
|
2022-09-12 00:29:55 -04:00
|
|
|
|
python
|
2021-12-13 11:18:24 -05:00
|
|
|
|
sassc/libsass-3.5))
|
2022-12-31 08:37:20 -05:00
|
|
|
|
(inputs (list gtk-engines)) ;for gtk+-2 to work properly
|
2021-12-31 00:10:29 -05:00
|
|
|
|
(synopsis "Flat GTK+ theme with transparent elements")
|
2021-01-02 17:56:30 -05:00
|
|
|
|
(description "Arc is a flat theme with transparent elements for GTK 3, GTK
|
|
|
|
|
2, and GNOME Shell which supports GTK 3 and GTK 2 based desktop environments
|
|
|
|
|
like GNOME, Unity, Budgie, Pantheon, XFCE, Mate, etc.")
|
|
|
|
|
(home-page "https://github.com/horst3180/arc-theme")
|
|
|
|
|
;; No "or later" language found.
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2020-11-21 18:17:13 -05:00
|
|
|
|
(define-public greybird-gtk-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "greybird-gtk-theme")
|
2021-01-02 17:44:52 -05:00
|
|
|
|
(version "3.22.13")
|
2020-11-21 18:17:13 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/shimmerproject/Greybird")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-01-02 17:44:52 -05:00
|
|
|
|
"154qawiga792iimkpk3a6q8f4gm4r158wmsagkbqqbhj33kxgxhg"))))
|
2020-11-21 18:17:13 -05:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 16:15:07 -05:00
|
|
|
|
(list gtk+
|
|
|
|
|
`(,glib "bin") ; for "glib-compile-resources"
|
2022-08-16 19:46:01 -04:00
|
|
|
|
(librsvg-for-system)
|
2021-12-13 16:15:07 -05:00
|
|
|
|
pkg-config
|
|
|
|
|
ruby-sass
|
|
|
|
|
sassc))
|
2020-11-21 18:17:13 -05:00
|
|
|
|
(home-page "https://shimmerproject.org/")
|
|
|
|
|
(synopsis "Grey GTK+ theme based on Bluebird")
|
|
|
|
|
(description "Greybird is a grey derivative of the Bluebird theme by the
|
|
|
|
|
Shimmer Project. It supports GNOME, Unity, and Xfce.")
|
|
|
|
|
(license (list license:gpl2+ license:cc-by-sa3.0))))
|
|
|
|
|
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(define-public matcha-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "matcha-theme")
|
|
|
|
|
(version "2021-01-01")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/vinceliuice/Matcha-gtk-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1pa6ra87wlq0gwz4n03l6xv0pxiamr5dygycvppms8v6xyc2aa0r"))))
|
|
|
|
|
(build-system trivial-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:modules ((guix build utils))
|
|
|
|
|
#:builder
|
|
|
|
|
(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(let* ((out (assoc-ref %outputs "out"))
|
|
|
|
|
(source (assoc-ref %build-inputs "source"))
|
|
|
|
|
(bash (assoc-ref %build-inputs "bash"))
|
|
|
|
|
(coreutils (assoc-ref %build-inputs "coreutils"))
|
|
|
|
|
(themesdir (string-append out "/share/themes")))
|
|
|
|
|
(setenv "PATH"
|
|
|
|
|
(string-append coreutils "/bin:"
|
|
|
|
|
(string-append bash "/bin:")))
|
|
|
|
|
(copy-recursively source (getcwd))
|
|
|
|
|
(patch-shebang "install.sh")
|
|
|
|
|
(mkdir-p themesdir)
|
|
|
|
|
(invoke "./install.sh" "-d" themesdir)
|
|
|
|
|
#t))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gtk-engines))
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list bash coreutils))
|
2021-01-02 18:16:38 -05:00
|
|
|
|
(synopsis "Flat design theme for GTK 3, GTK 2 and GNOME-Shell")
|
|
|
|
|
(description "Matcha is a flat Design theme for GTK 3, GTK 2 and
|
|
|
|
|
Gnome-Shell which supports GTK 3 and GTK 2 based desktop environments
|
|
|
|
|
like Gnome, Unity, Budgie, Pantheon, XFCE, Mate and others.")
|
|
|
|
|
(home-page "https://github.com/vinceliuice/matcha")
|
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
|
2021-01-02 18:29:22 -05:00
|
|
|
|
(define-public materia-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "materia-theme")
|
2022-12-31 03:53:15 -05:00
|
|
|
|
(version "20210322")
|
2021-01-02 18:29:22 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/nana-4/materia-theme")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-12-31 03:53:15 -05:00
|
|
|
|
"1fsicmcni70jkl4jb3fvh7yv0v9jhb8nwjzdq8vfwn256qyk0xvl"))))
|
2021-01-02 18:29:22 -05:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gtk+ sassc))
|
2021-01-02 18:29:22 -05:00
|
|
|
|
(home-page "https://github.com/nana-4/materia-theme")
|
|
|
|
|
(synopsis "Material Design theme for a wide range of environments")
|
|
|
|
|
(description "Materia is a Material Design theme for GNOME/GTK based
|
|
|
|
|
desktop environments. It supports GTK 2, GTK 3, GNOME Shell, Budgie,
|
|
|
|
|
Cinnamon, MATE, Unity, Xfce, LightDM, GDM, Chrome theme, etc.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2020-03-29 11:53:51 -04:00
|
|
|
|
(define-public numix-gtk-theme
|
2019-11-09 07:48:59 -05:00
|
|
|
|
(package
|
2020-03-29 11:53:51 -04:00
|
|
|
|
(name "numix-gtk-theme")
|
2019-11-09 07:48:59 -05:00
|
|
|
|
(version "2.6.7")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/numixproject/numix-gtk-theme")
|
2019-11-09 07:48:59 -05:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2020-03-29 12:01:04 -04:00
|
|
|
|
'(#:make-flags
|
|
|
|
|
(list (string-append "INSTALL_DIR="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/themes/Numix"))
|
2020-03-29 11:24:38 -04:00
|
|
|
|
#:tests? #f
|
2019-11-09 07:48:59 -05:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2022-09-11 11:31:11 -04:00
|
|
|
|
(delete 'configure)))) ; no configure script
|
2019-11-09 07:48:59 -05:00
|
|
|
|
(native-inputs
|
2022-09-11 11:31:11 -04:00
|
|
|
|
(list `(,glib "bin") ; for glib-compile-schemas
|
|
|
|
|
gnome-shell
|
|
|
|
|
gtk+
|
|
|
|
|
libxml2
|
|
|
|
|
ruby-sass))
|
2019-11-09 07:48:59 -05:00
|
|
|
|
(synopsis "Flat theme with light and dark elements")
|
|
|
|
|
(description "Numix is a modern flat theme with a combination of light and
|
|
|
|
|
dark elements. It supports GNOME, Unity, Xfce, and Openbox.")
|
|
|
|
|
(home-page "https://numixproject.github.io")
|
|
|
|
|
(license license:gpl3+)))
|
2019-12-12 17:21:35 -05:00
|
|
|
|
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(define-public orchis-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "orchis-theme")
|
2021-03-07 10:33:08 -05:00
|
|
|
|
(version "2021-02-28")
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri
|
|
|
|
|
(git-reference
|
|
|
|
|
(url "https://github.com/vinceliuice/Orchis-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-03-07 10:33:08 -05:00
|
|
|
|
"1qp3phiza93qllrjm5xjjca5b7l2sbng8c382khy9m97grxvcq0y"))
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(modules '((guix build utils)
|
|
|
|
|
(ice-9 regex)
|
|
|
|
|
(srfi srfi-26)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (f)
|
|
|
|
|
(let* ((r (make-regexp "\\.scss"))
|
|
|
|
|
(f* (regexp-substitute #f (regexp-exec r f) 'pre ".css")))
|
|
|
|
|
(if (file-exists? f*)
|
|
|
|
|
(delete-file f*))))
|
|
|
|
|
(find-files "." ".*\\.scss"))
|
|
|
|
|
#t))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2021-03-07 10:33:24 -05:00
|
|
|
|
`(#:configure-flags (list
|
|
|
|
|
"--dest" (string-append
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/share/themes")
|
|
|
|
|
"--theme" "all"
|
|
|
|
|
"--radio-color")
|
|
|
|
|
#:tests? #f ; no tests
|
2021-02-17 05:16:40 -05:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(replace 'build (lambda _ (invoke "./parse-sass.sh")))
|
|
|
|
|
(replace 'install
|
2021-03-07 10:33:24 -05:00
|
|
|
|
(lambda* (#:key configure-flags #:allow-other-keys)
|
|
|
|
|
(mkdir-p
|
|
|
|
|
(cadr (or (member "--dest" configure-flags)
|
|
|
|
|
(member "-d" configure-flags))))
|
|
|
|
|
(apply invoke "./install.sh" configure-flags)
|
|
|
|
|
#t)))))
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list gtk-engines))
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list ;("coreutils" ,coreutils)
|
|
|
|
|
gtk+ sassc))
|
2021-02-17 05:16:40 -05:00
|
|
|
|
(home-page "https://github.com/vinceliuice/Orchis-theme")
|
|
|
|
|
(synopsis "Material Design theme for a wide range of environments")
|
|
|
|
|
(description "Orchis is a Material Design them for GNOME/GTK based
|
|
|
|
|
desktop environments. It is based on materia-theme and adds more color
|
|
|
|
|
variants.")
|
2021-03-06 15:36:31 -05:00
|
|
|
|
(license (list license:gpl3 ; According to COPYING.
|
2021-02-17 05:16:40 -05:00
|
|
|
|
license:lgpl2.1 ; Some style sheets.
|
|
|
|
|
license:cc-by-sa4.0)))) ; Some icons
|
|
|
|
|
|
2023-02-20 14:58:46 -05:00
|
|
|
|
(define-public postmarketos-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "postmarketos-theme")
|
|
|
|
|
(version "0.6.0")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/postmarketOS/postmarketos-theme")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"09in7737cirmw2c0ac40ac29szfgdva6q0zl32mdi12marybd2g5"))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs (list sassc))
|
|
|
|
|
(home-page "https://gitlab.com/postmarketOS/postmarketos-theme")
|
|
|
|
|
(synopsis "PostmarketOS themed themes")
|
|
|
|
|
(description
|
|
|
|
|
"@code{postmarketos-theme} contains a GTK3 and GTK4 theme which is based
|
|
|
|
|
on Adwaita but replaces the standard blue highlights in the theme with
|
|
|
|
|
postmarketOS green. There's also the oled and paper variants of the theme
|
|
|
|
|
that are completely black and completely white.")
|
|
|
|
|
(license license:lgpl2.0+)))
|
|
|
|
|
|
2021-12-11 02:44:39 -05:00
|
|
|
|
(define-public eiciel
|
|
|
|
|
(package
|
|
|
|
|
(name "eiciel")
|
|
|
|
|
(version "0.9.13.1")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/rofirrim/eiciel")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0rhhw0h1hyg5kvxhjxkdz03vylgax6912mg8j4lvcz6wlsa4wkvj"))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:glib-or-gtk? #t
|
|
|
|
|
#:tests? #f ; no tests
|
|
|
|
|
#:configure-flags
|
|
|
|
|
(list (string-append "-Dnautilus-extension-dir="
|
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
|
"/lib/nautilus/site-extensions"))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list gettext-minimal pkg-config))
|
|
|
|
|
(inputs
|
|
|
|
|
(list acl attr glibmm-2.64 gtkmm-3 nautilus))
|
|
|
|
|
(home-page "https://rofi.roger-ferrer.org/eiciel")
|
|
|
|
|
(synopsis "Manage extended file attributes")
|
|
|
|
|
(description "Eiciel is a plugin for nautilus to graphically edit ACL and
|
|
|
|
|
extended file attributes. It also functions as a standalone command.")
|
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(define-public markets
|
|
|
|
|
(package
|
|
|
|
|
(name "markets")
|
2022-06-14 11:18:55 -04:00
|
|
|
|
(version "0.5.4")
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/bitstower/markets")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-06-14 11:18:55 -04:00
|
|
|
|
"0ch6dfmdcpw32r23s58riv8agnyw0f1cqd1y6j7zkx5sb3zyn3zy"))))
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:glib-or-gtk? #t
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'skip-gtk-update-icon-cache
|
|
|
|
|
;; Don't create 'icon-theme.cache'.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "build-aux/meson/postinstall.py"
|
2021-08-11 20:36:10 -04:00
|
|
|
|
(("gtk-update-icon-cache") "true"))))
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(add-after 'unpack 'skip-update-desktop-database
|
|
|
|
|
;; Don't update desktop file database.
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "build-aux/meson/postinstall.py"
|
2021-08-11 20:36:10 -04:00
|
|
|
|
(("update-desktop-database") "true")))))))
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(inputs
|
2021-12-25 19:44:13 -05:00
|
|
|
|
(list gtk+
|
|
|
|
|
gettext-minimal
|
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
libgee
|
|
|
|
|
libhandy
|
|
|
|
|
libsoup-minimal-2
|
|
|
|
|
json-glib
|
|
|
|
|
vala))
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config
|
2022-04-20 00:58:18 -04:00
|
|
|
|
python-wrapper
|
2021-12-13 11:18:24 -05:00
|
|
|
|
`(,glib "bin"))) ; for 'glib-compile-resources'
|
2021-01-09 10:03:49 -05:00
|
|
|
|
(home-page "https://github.com/bitstower/markets")
|
|
|
|
|
(synopsis "Stock, currency and cryptocurrency tracker")
|
|
|
|
|
(description
|
|
|
|
|
"Markets is a GTK application that displays financial data, helping users
|
|
|
|
|
track stocks, currencies and cryptocurrencies.")
|
2021-08-11 20:36:10 -04:00
|
|
|
|
(license license:gpl3+)))
|
2021-01-09 10:03:49 -05:00
|
|
|
|
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(define-public vala-language-server
|
|
|
|
|
(package
|
|
|
|
|
(name "vala-language-server")
|
|
|
|
|
;; Note to maintainer: VLS must be built with a Vala toolchain the same
|
|
|
|
|
;; version or newer. Therefore when you update this package you may need
|
|
|
|
|
;; to update Vala too.
|
2021-11-13 08:51:58 -05:00
|
|
|
|
(version "0.48.3")
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/benwaffle/vala-language-server")
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
2021-11-13 08:51:58 -05:00
|
|
|
|
(base32 "1gnvc91gdp3wj9r3r3xxfr09f9lw39cfypn2q5f0443dhhmp059j"))))
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(arguments '(#:glib-or-gtk? #t))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib json-glib jsonrpc-glib libgee vala))
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config))
|
2020-06-02 23:06:35 -04:00
|
|
|
|
(home-page "https://github.com/benwaffle/vala-language-server")
|
|
|
|
|
(synopsis "Language server for Vala")
|
|
|
|
|
(description "The Vala language server is an implementation of the Vala
|
|
|
|
|
language specification for the Language Server Protocol (LSP). This tool is
|
|
|
|
|
used in text editing environments to provide a complete and integrated
|
|
|
|
|
feature-set for programming Vala effectively.")
|
|
|
|
|
(license license:lgpl2.1+)))
|
2021-01-01 09:20:14 -05:00
|
|
|
|
|
2022-11-30 09:49:58 -05:00
|
|
|
|
|
|
|
|
|
(define-public yaru-theme
|
|
|
|
|
(package
|
|
|
|
|
(name "yaru-theme")
|
|
|
|
|
(version "22.10.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/ubuntu/yaru")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0f052a5cyf4lijyrdp4kjvxrx6d5fbj7109pi2bhxs9lk5jy8z86"))))
|
|
|
|
|
(build-system meson-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
(list python sassc pkg-config `(,glib "bin") `(,gtk+ "bin")))
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:configure-flags #~'("-Dmate=true"
|
|
|
|
|
"-Dmate-dark=true"
|
|
|
|
|
"-Dxfwm4=true"
|
|
|
|
|
"-Dmetacity=true"
|
|
|
|
|
"-Dsessions=false")))
|
|
|
|
|
(home-page "https://github.com/ubuntu/yaru")
|
|
|
|
|
(synopsis "Ubuntu community theme yaru")
|
|
|
|
|
(description "Yaru is the default theme for Ubuntu.
|
|
|
|
|
|
|
|
|
|
It contains:
|
|
|
|
|
|
|
|
|
|
@itemize
|
|
|
|
|
@item a GNOME Shell theme based on the upstream GNOME shell theme
|
|
|
|
|
@item a light and dark GTK theme (gtk2 and gtk3) based on the upstream Adwaita
|
|
|
|
|
Gtk theme
|
|
|
|
|
@item an icon & cursor theme, derived from the Unity8 Suru icons and Suru icon
|
|
|
|
|
theme
|
|
|
|
|
@item a sound theme, combining sounds from the WoodenBeaver and Touch-Remix
|
|
|
|
|
sound themes.
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license (list license:lgpl2.1 license:lgpl3 license:cc-by-sa4.0))))
|
2023-03-13 14:43:18 -04:00
|
|
|
|
|
2021-01-01 09:20:14 -05:00
|
|
|
|
(define-public nordic-theme
|
|
|
|
|
(let ((commit "07d764c5ebd5706e73d2e573f1a983e37b318915")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "nordic-theme")
|
|
|
|
|
(version (git-version "1.9.0" revision commit))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/EliverLara/Nordic")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0y2s9d6h1b195s6afp1gb5rb1plfslkpbw2brd30a9d66wfvsqk0"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:install-plan
|
|
|
|
|
`(("." "share/themes/nord"
|
|
|
|
|
#:exclude ("README.md" "LICENSE" "Art/" "package.json"
|
|
|
|
|
"package-lock.json" "Gulpfile.js")))))
|
|
|
|
|
(home-page "https://github.com/EliverLara/Nordic")
|
2021-04-09 13:55:43 -04:00
|
|
|
|
(synopsis "Dark Gtk3.20+ theme using the Nord color palette")
|
2021-01-01 09:20:14 -05:00
|
|
|
|
(description "Nordic is a Gtk3.20+ theme created using the Nord color
|
2021-04-09 13:55:43 -04:00
|
|
|
|
palette.")
|
2021-01-01 09:20:14 -05:00
|
|
|
|
(license license:gpl3))))
|
2021-02-10 13:03:01 -05:00
|
|
|
|
|
|
|
|
|
(define-public tiramisu
|
2021-11-27 12:42:11 -05:00
|
|
|
|
(package
|
|
|
|
|
(name "tiramisu")
|
|
|
|
|
(version "2.0.20211107")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/Sweets/tiramisu")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(delete 'check)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(install-file "tiramisu" (string-append out "/bin"))
|
|
|
|
|
#t))))
|
|
|
|
|
#:make-flags
|
|
|
|
|
(list (string-append "CC=" ,(cc-for-target)))))
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list glib))
|
2021-11-27 12:42:11 -05:00
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list pkg-config vala))
|
2021-11-27 12:42:11 -05:00
|
|
|
|
(home-page "https://github.com/Sweets/tiramisu")
|
|
|
|
|
(synopsis "Desktop notifications, the UNIX way")
|
|
|
|
|
(description "tiramisu is a notification daemon based on dunst that outputs
|
|
|
|
|
notifications to STDOUT in order to allow the user to process notifications any
|
|
|
|
|
way they prefer.")
|
|
|
|
|
(license license:expat)))
|