forked from tribes/guix
2bf228ab40
* gnu/packages/pantheon.scm (sideload)[arguments]: Switch to gexp. Change-Id: I5e482dedaf5bec95c6320663f03b3f97fab56cde
502 lines
17 KiB
Scheme
502 lines
17 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
|
;;; Copyright © 2023 Wamm K. D. <jaft.r@outlook.com>
|
|
;;; Copyright © 2023, 2024 altadil <Altadil@protonmail.com>
|
|
;;; Copyright © 2024 jgart <jgart@dismail.de>
|
|
;;; Copyright © 2026 Sughosha <sughosha@disroot.org>
|
|
;;;
|
|
;;; 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 pantheon)
|
|
#:use-module (gnu packages calendar)
|
|
#:use-module (gnu packages cmake)
|
|
#:use-module (gnu packages freedesktop)
|
|
#:use-module (gnu packages gettext)
|
|
#:use-module (gnu packages glib)
|
|
#:use-module (gnu packages gnome)
|
|
#:use-module (gnu packages gnupg)
|
|
#:use-module (gnu packages gstreamer)
|
|
#:use-module (gnu packages gtk)
|
|
#:use-module (gnu packages image)
|
|
#:use-module (gnu packages libcanberra)
|
|
#:use-module (gnu packages package-management)
|
|
#:use-module (gnu packages pcre)
|
|
#:use-module (gnu packages photo)
|
|
#:use-module (gnu packages pkg-config)
|
|
#:use-module (gnu packages python)
|
|
#:use-module (gnu packages sqlite)
|
|
#:use-module (gnu packages xml)
|
|
#:use-module (gnu packages web)
|
|
#:use-module (gnu packages xorg)
|
|
#:use-module (gnu packages)
|
|
#:use-module (guix build-system meson)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix git-download)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils))
|
|
|
|
(define-public granite
|
|
(package
|
|
(name "granite")
|
|
(version "7.8.1")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/granite")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"01s37b6ssfhawbzxzq5yyjcxq9m2qf16q0h4g4vfhj1c6f4l8khy"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:configure-flags
|
|
#~(list "-Ddemo=false") ;requires libshumate
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'unpack 'disable-icon-cache
|
|
(lambda _
|
|
(substitute* "meson.build"
|
|
(("gtk_update_icon_cache: true")
|
|
"gtk_update_icon_cache: false")))))))
|
|
(inputs (list sassc))
|
|
(propagated-inputs (list glib libgee gtk)) ;required in .pc file
|
|
(native-inputs (list gettext-minimal
|
|
`(,glib "bin")
|
|
gobject-introspection
|
|
pkg-config
|
|
python
|
|
vala))
|
|
(home-page "https://github.com/elementary/granite")
|
|
(synopsis "Library that extends GTK with common widgets and utilities")
|
|
(description "Granite is a companion library for GTK+ and GLib. Among other
|
|
things, it provides complex widgets and convenience functions designed for use
|
|
in apps built for the Pantheon desktop.")
|
|
(license license:lgpl3+)))
|
|
|
|
;; This is required for pantheon apps that have not been ported to GTK4 yet.
|
|
(define-public granite-6
|
|
(package
|
|
(inherit granite)
|
|
(version "6.2.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/granite")
|
|
(commit version)))
|
|
(file-name (git-file-name "granite" version))
|
|
(sha256
|
|
(base32
|
|
"0ilslmg63hh2x7h5rvs3mhzw1y9ixhhkqnn1j1lzwm12v2iidkaq"))))
|
|
(arguments
|
|
(substitute-keyword-arguments arguments
|
|
((#:configure-flags _ '())
|
|
#~'())
|
|
((#:phases phases)
|
|
#~(modify-phases #$phases
|
|
(replace 'disable-icon-cache
|
|
(lambda _
|
|
(setenv "DESTDIR" "/")))))))
|
|
(propagated-inputs (list glib libgee gtk+))))
|
|
|
|
(define-public pantheon-calculator
|
|
(package
|
|
(name "pantheon-calculator")
|
|
(version "8.0.1")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/calculator")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"157a2xryp9013m5grr3brfrs6hqz2ndg0ys8h0184am5zvg9w4sw"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:glib-or-gtk? #t
|
|
#:phases #~(modify-phases %standard-phases
|
|
(add-after 'unpack 'disable-schema-cache-generation
|
|
(lambda _
|
|
(setenv "DESTDIR" "/"))))))
|
|
(inputs
|
|
(list granite
|
|
glib
|
|
gtk
|
|
libgee
|
|
libhandy))
|
|
(native-inputs
|
|
(list cmake-minimal
|
|
`(,glib "bin") ; for glib-compile-schemas
|
|
gettext-minimal
|
|
pkg-config
|
|
vala))
|
|
(home-page "https://github.com/elementary/calculator")
|
|
(synopsis "Desktop calculator")
|
|
(description "Calculator is an application for performing simple
|
|
arithmetic. It is the default calculator application in the Pantheon
|
|
desktop.")
|
|
(license license:gpl3)))
|
|
|
|
(define-public pantheon-calendar
|
|
(package
|
|
(name "pantheon-calendar")
|
|
(version "8.0.1")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/calendar")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0344wr5ka2cfkr46vrclh1w9nhrrznn0jbb5g95dfww2czrp6iwj"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
;; Tests involve checking environment variable against particular TZ.
|
|
#:tests? #f
|
|
#:glib-or-gtk? #t
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'unpack 'disable-icon-cache
|
|
(lambda _
|
|
(substitute* "meson.build"
|
|
(("gtk_update_icon_cache: true")
|
|
"gtk_update_icon_cache: false"))))
|
|
(add-after 'install 'install-symlinks
|
|
(lambda _
|
|
(let* ((bin (string-append #$output
|
|
"/bin/io.elementary.calendar"))
|
|
(link (string-append #$output "/bin/pantheon-calendar")))
|
|
(symlink bin link)))))))
|
|
(inputs
|
|
(list clutter
|
|
evolution-data-server
|
|
folks
|
|
geoclue
|
|
geocode-glib
|
|
granite-6
|
|
glib
|
|
gtk
|
|
libchamplain
|
|
libgee
|
|
libhandy
|
|
libical
|
|
libportal))
|
|
(native-inputs
|
|
(list cmake-minimal
|
|
`(,glib "bin") ; for glib-compile-schemas
|
|
gettext-minimal
|
|
pkg-config
|
|
vala))
|
|
(home-page "https://github.com/elementary/calendar")
|
|
(synopsis "Desktop calendar")
|
|
(description "This package provides a desktop calendar app designed for
|
|
elementary OS.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public pantheon-icons
|
|
(package
|
|
(name "pantheon-icons")
|
|
(version "8.2.0")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/icons")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "04x8r1kknm7iswlg71da24aqqgrs494mivdx3jx1wz1jz5wzxnwy"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list #:configure-flags #~(list "-Dvolume_icons=false"
|
|
"-Dpalettes=false")))
|
|
(native-inputs (list gettext-minimal ;for msgfmt
|
|
librsvg
|
|
xcursorgen))
|
|
(propagated-inputs (list adwaita-icon-theme))
|
|
(synopsis "Named, vector icons for the pantheon desktop")
|
|
(description
|
|
"pantheon-icons is an original set of vector icons designed
|
|
for elementary OS and its desktop environment: Pantheon.")
|
|
(home-page "https://elementary.io/open-source")
|
|
(license license:gpl3)))
|
|
|
|
(define-public pantheon-photos
|
|
(package
|
|
(name "pantheon-photos")
|
|
(version "8.0.1")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/photos")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "15ppxzbj882i2hpm88nn5azijhmgjc9js07i3wdpick2ciw83apr"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:glib-or-gtk? #t
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'unpack 'disable-icon-cache
|
|
(lambda _
|
|
(substitute* "meson.build"
|
|
(("gtk_update_icon_cache: true")
|
|
"gtk_update_icon_cache: false"))))
|
|
(add-after 'install 'install-symlinks
|
|
(lambda _
|
|
(let* ((bin (string-append #$output
|
|
"/bin/io.elementary.photos"))
|
|
(link (string-append #$output "/bin/pantheon-photos")))
|
|
(symlink bin link)))))))
|
|
(native-inputs
|
|
(list desktop-file-utils
|
|
`(,glib "bin")
|
|
intltool
|
|
pkg-config
|
|
python
|
|
vala))
|
|
(inputs
|
|
(list geocode-glib
|
|
gexiv2-0.14
|
|
granite-6
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gstreamer
|
|
gtk+
|
|
libexif
|
|
libgee
|
|
libgphoto2
|
|
libgudev
|
|
libhandy
|
|
libportal
|
|
libraw
|
|
libwebp
|
|
sqlite))
|
|
(synopsis "Photo viewer and organizer designed for the Pantheon desktop")
|
|
(description
|
|
"Photos is an image viewer and organizer. It originally comes
|
|
from elementary OS and is designed for the Pantheon desktop environment (but can
|
|
also be used on others.")
|
|
(home-page "https://elementary.io/open-source")
|
|
(license license:lgpl2.1+)))
|
|
|
|
(define-public pantheon-screenshot
|
|
(package
|
|
(name "pantheon-screenshot")
|
|
(version "8.0.4")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/screenshot")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "0ib6g47pykpscfazd12gssxv6in0v4jlcn8lfp0i1g0i4ap36ml5"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:glib-or-gtk? #t
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'unpack 'disable-schema-cache-generation
|
|
(lambda _ (setenv "DESTDIR" "/")))
|
|
(add-after 'install 'install-symlinks
|
|
(lambda _
|
|
(let* ((bin (string-append #$output
|
|
"/bin/io.elementary.screenshot"))
|
|
(link (string-append #$output
|
|
"/bin/pantheon-screenshot")))
|
|
(symlink bin link)))))))
|
|
(native-inputs (list desktop-file-utils
|
|
gettext-minimal ;for msgfmt
|
|
`(,glib "bin")
|
|
pkg-config
|
|
vala))
|
|
(inputs (list granite
|
|
gtk
|
|
libcanberra
|
|
libgee
|
|
libportal
|
|
libhandy))
|
|
(propagated-inputs (list glib))
|
|
(synopsis "Screenshot tool")
|
|
(description "pantheon-screenshot is a screenshot tool designed for
|
|
the Pantheon desktop environment.")
|
|
(home-page "https://elementary.io/open-source")
|
|
(license license:lgpl3)))
|
|
|
|
(define-public pantheon-stylesheet
|
|
(package
|
|
(name "pantheon-stylesheet")
|
|
(version "8.2.2")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/stylesheet")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "065zzv1b39i0j775kc60cywiwizw2rckg2kildfhs4mp81yswdv6"))))
|
|
(build-system meson-build-system)
|
|
(native-inputs (list gettext-minimal)) ;for msgfmt
|
|
(inputs (list sassc))
|
|
(synopsis "GTK stylesheet for the Pantheon desktop")
|
|
(description "pantheon-stylesheet is the GTK Stylesheet for the Pantheon
|
|
desktop environment (originally from elementary OS).")
|
|
(home-page "https://elementary.io/open-source")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public pantheon-terminal
|
|
(package
|
|
(name "pantheon-terminal")
|
|
(version "8.0.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/terminal")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0kldk74rmifgbf2wq9qbzv414dl4mgf94mzr5a4i2cags4rxlci3"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:tests? #f ; Tests involve launching the terminal.
|
|
#:glib-or-gtk? #t
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'install 'install-symlinks
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
(let* ((bin (string-append #$output
|
|
"/bin/io.elementary.terminal"))
|
|
(link (string-append #$output "/bin/pantheon-terminal")))
|
|
(symlink bin link)))))))
|
|
(native-inputs (list appstream
|
|
desktop-file-utils ;required for tests
|
|
gettext-minimal ;for msgfmt
|
|
`(,glib "bin") ;for glib-compile-resources
|
|
gobject-introspection
|
|
pkg-config
|
|
vala
|
|
xvfb-run))
|
|
(inputs (list granite
|
|
gtk
|
|
libadwaita
|
|
libgee
|
|
libhandy
|
|
pcre2
|
|
vte))
|
|
(synopsis "Terminal emulator from elementaryOS")
|
|
(description "pantheon-terminal is a lightweight, beautiful and simple
|
|
terminal. It comes with sane defaults, browser-class tabs, sudo paste
|
|
protection, smart copy/paste, and little to no configuration. It is the default
|
|
terminal in the Pantheon desktop.")
|
|
(home-page "https://elementary.io/open-source")
|
|
(license license:lgpl3)))
|
|
|
|
(define-public sideload
|
|
(package
|
|
(name "sideload")
|
|
(version "6.3.1")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/sideload")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0hn9gnzr25i0k6b81ia6c73lqmr43grfdwn18sfp8xhjiqlqqmlq"))))
|
|
(build-system meson-build-system)
|
|
(arguments
|
|
(list
|
|
#:glib-or-gtk? #t
|
|
#:phases
|
|
#~(modify-phases %standard-phases
|
|
(add-after 'install 'install-symlinks
|
|
(lambda _
|
|
(let ((bin (string-append #$output
|
|
"/bin/io.elementary.sideload"))
|
|
(link (string-append #$output "/bin/sideload")))
|
|
(symlink bin link)))))))
|
|
(inputs
|
|
(list flatpak
|
|
glib
|
|
granite
|
|
gtk+
|
|
hicolor-icon-theme
|
|
libgee
|
|
libhandy
|
|
libostree
|
|
libxml2))
|
|
(propagated-inputs
|
|
;; Sideload needs these in the environment to fetch data securely from
|
|
;; Flatpak remotes.
|
|
(list gnupg gpgme))
|
|
(native-inputs
|
|
(list desktop-file-utils ;for update-desktop-database
|
|
gettext-minimal
|
|
`(,glib "bin")
|
|
gobject-introspection
|
|
pkg-config
|
|
vala))
|
|
(home-page "https://github.com/elementary/sideload")
|
|
(synopsis "Graphical application to side-load Flatpaks")
|
|
(description "Sideload handles flatpakref files, like those you might find
|
|
on Flathub or another third-party website providing a Flatpak app for
|
|
download.")
|
|
(license license:gpl3+)))
|
|
|
|
(define-public pantheon-wallpapers
|
|
(package
|
|
(name "pantheon-wallpapers")
|
|
(version "8.0.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://github.com/elementary/wallpapers/")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256 (base32
|
|
"163y98x0vc8icmd5prrjja7sp3clp8apvx0ha2shiaymxnprifm9"))))
|
|
(build-system meson-build-system)
|
|
(native-inputs (list gettext-minimal)) ; for msgfmt
|
|
(inputs (list libexif))
|
|
(synopsis "Wallpapers for the Pantheon desktop")
|
|
(description "This package provides wallpapers for the Pantheon desktop.")
|
|
(home-page "https://github.com/elementary/wallpapers")
|
|
(license (list license:cc-by-sa4.0
|
|
license:cc0
|
|
(license:non-copyleft "https://unsplash.com/license")
|
|
(license:non-copyleft "https://www.pexels.com/license/")))))
|