diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-10-04 19:05:44 +0200 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-08-01 11:08:33 +0200 |
| commit | 852de2c1311d76f3d71ca67acc8463550b3d085e (patch) | |
| tree | 65071a8fd9a5964e69fc99404fbce907910d8836 /gnu | |
| parent | f5395b152fd0f48e73eef219d94e138bed5abad2 (diff) | |
gnu: Add cinnamon-meta-shell.
* gnu/packages/cinnamon.scm (cinnamon-meta-shell): New variable.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/cinnamon.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/cinnamon.scm b/gnu/packages/cinnamon.scm index 2681f279e02..5be477c414a 100644 --- a/gnu/packages/cinnamon.scm +++ b/gnu/packages/cinnamon.scm | |||
| @@ -968,3 +968,34 @@ window manager for the Cinnamon desktop environment.") | |||
| 968 | "Nemo is the file manager for the Cinnamon desktop environment.") | 968 | "Nemo is the file manager for the Cinnamon desktop environment.") |
| 969 | (properties '((lint-hidden-cpe-vendors . ("nvidia")))) | 969 | (properties '((lint-hidden-cpe-vendors . ("nvidia")))) |
| 970 | (license license:expat))) | 970 | (license license:expat))) |
| 971 | |||
| 972 | (define-public cinnamon-meta-shell | ||
| 973 | (package | ||
| 974 | (name "cinnamon-meta-shell") | ||
| 975 | (version (package-version cinnamon)) | ||
| 976 | (source #f) | ||
| 977 | (build-system trivial-build-system) | ||
| 978 | (arguments | ||
| 979 | (list #:builder | ||
| 980 | #~(begin (format (current-warning-port) | ||
| 981 | "Building ~a is useless. \ | ||
| 982 | Refer to its propagated inputs instead.\n" | ||
| 983 | #$(package-name this-package)) | ||
| 984 | (mkdir #$output)))) | ||
| 985 | (propagated-inputs (list cinnamon | ||
| 986 | cinnamon-control-center | ||
| 987 | cinnamon-desktop | ||
| 988 | cinnamon-menus | ||
| 989 | cinnamon-screensaver | ||
| 990 | cinnamon-session | ||
| 991 | cinnamon-settings-daemon | ||
| 992 | cinnamon-translations | ||
| 993 | cjs | ||
| 994 | muffin | ||
| 995 | nemo)) | ||
| 996 | (home-page "https://projects.linuxmint.com/cinnamon/") | ||
| 997 | (synopsis "Graphical desktop environment") | ||
| 998 | (description | ||
| 999 | "Cinnamon is a desktop environment reminiscent of ye olde GNOME 2, | ||
| 1000 | with its underlying technology forked from modern GNOME.") | ||
| 1001 | (license license:gpl2+))) | ||
