diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-01-05 08:42:24 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-01-16 08:41:01 +0100 |
| commit | 5af678095d31c6b27f6a9598e2b986744c023bcf (patch) | |
| tree | c4e1023b4fe583773e7fdbfe33f6085123e71ae4 /etc/teams/gnome | |
| parent | 91db60fa88c2b6be4c212f85362cacac99ee0c77 (diff) | |
teams: gnome: Add gnome-manifest.
* etc/teams/gnome/gnome-manifest.scm: New file.
Diffstat (limited to 'etc/teams/gnome')
| -rw-r--r-- | etc/teams/gnome/gnome-manifest.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/etc/teams/gnome/gnome-manifest.scm b/etc/teams/gnome/gnome-manifest.scm new file mode 100644 index 00000000000..643a32c9b42 --- /dev/null +++ b/etc/teams/gnome/gnome-manifest.scm | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | ||
| 2 | ;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com> | ||
| 3 | ;;; | ||
| 4 | ;;; This file is part of GNU Guix. | ||
| 5 | ;;; | ||
| 6 | ;;; GNU Guix is free software; you can redistribute it and/or modify it | ||
| 7 | ;;; under the terms of the GNU General Public License as published by | ||
| 8 | ;;; the Free Software Foundation; either version 3 of the License, or (at | ||
| 9 | ;;; your option) any later version. | ||
| 10 | ;;; | ||
| 11 | ;;; GNU Guix is distributed in the hope that it will be useful, but | ||
| 12 | ;;; WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | ;;; GNU General Public License for more details. | ||
| 15 | ;;; | ||
| 16 | ;;; You should have received a copy of the GNU General Public License | ||
| 17 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | |||
| 19 | (use-modules (guix packages) | ||
| 20 | (guix profiles) | ||
| 21 | (gnu packages gnome) | ||
| 22 | (ice-9 match) | ||
| 23 | (srfi srfi-1)) | ||
| 24 | |||
| 25 | (define (propagated-inputs package) | ||
| 26 | (map | ||
| 27 | (match-lambda | ||
| 28 | ((_ (? package? pkg)) pkg) | ||
| 29 | ((_ (? package? pkg) output) (list pkg output))) | ||
| 30 | (package-propagated-inputs package))) | ||
| 31 | |||
| 32 | (packages->manifest | ||
| 33 | (append-map propagated-inputs | ||
| 34 | (list gnome-meta-core-services | ||
| 35 | gnome-meta-core-shell | ||
| 36 | gnome-meta-core-utilities | ||
| 37 | gnome-essential-extras))) | ||
