mirror of https://codeberg.org/hako/Rosenthal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.7 KiB
44 lines
1.7 KiB
;; SPDX-FileCopyrightText: 2022-2023 Hilton Chain <hako@ultrarare.space> |
|
;; |
|
;; SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
(define-module (rosenthal packages gnome-xyz) |
|
#:use-module ((guix licenses) #:prefix license:) |
|
#:use-module (guix build-system copy) |
|
#:use-module (guix gexp) |
|
#:use-module (guix git-download) |
|
#:use-module (guix packages) |
|
#:use-module (guix utils)) |
|
|
|
(define-public qogir-icon-theme |
|
(package |
|
(name "qogir-icon-theme") |
|
(version "2023.02.23") |
|
(source (origin |
|
(method git-fetch) |
|
(uri (git-reference |
|
(url "https://github.com/vinceliuice/Qogir-icon-theme") |
|
(commit (string-replace-substring version "." "-")))) |
|
(file-name (git-file-name name version)) |
|
(modules '((guix build utils))) |
|
(snippet '(substitute* "install.sh" |
|
(("gtk-update-icon-cache") "true"))) |
|
(sha256 |
|
(base32 |
|
"1firj5yx38m2vp9bwkcinnz7swx75nr5pg59ld21gd4pz2dlfyn9")))) |
|
(build-system copy-build-system) |
|
(arguments |
|
(list #:phases |
|
#~(modify-phases %standard-phases |
|
(replace 'install |
|
(lambda _ |
|
(let* ((dest (string-append #$output "/share/icons")) |
|
(flags (list "--theme" "all" |
|
"--color" "all" |
|
"--dest" dest))) |
|
(mkdir-p dest) |
|
(apply invoke "sh" "install.sh" flags))))))) |
|
(home-page "https://www.pling.com/p/1296407/") |
|
(synopsis "Colorful design icon theme for linux desktops") |
|
(description "A flat colorful design icon theme for linux desktops.") |
|
(license license:gpl3)))
|
|
|