diff options
| author | Giacomo Leidi <therewasa@fishinthecalculator.me> | 2026-03-09 14:10:21 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-19 07:36:03 +0100 |
| commit | cc4c1633ffa4c2245c9dc594403a3a2dffc2ad98 (patch) | |
| tree | ec94e87ef9fdbbcd4a130a0a76e3dd971d845e73 /gnu | |
| parent | d78f9a3285ed1ab94e9d92f53ab7f6494aad7a44 (diff) | |
gnu: Add gnome-shell-extension-dock-ng.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dock-ng): New variable.
Change-Id: I1ceb1be6c71f90eb0df60c31cf6764ceddc1bb1e
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome-xyz.scm | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 6286e002a8d..39f5b38f604 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019, 2020, 2021 Liliana Marie Prikler <liliana.prikler@gmail.com> ;;; Copyright © 2019, 2021 Alexandros Theodotou <alex@zrythm.org> -;;; Copyright © 2019 Giacomo Leidi <therewasa@fishinthecalculator.me> +;;; Copyright © 2019, 2026 Giacomo Leidi <therewasa@fishinthecalculator.me> ;;; Copyright © 2020 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us> ;;; Copyright © 2020 Kei Kebreau <kkebreau@posteo.net> @@ -815,6 +815,57 @@ faster window switching.") (home-page "https://micheleg.github.io/dash-to-dock/") (license license:gpl2+))) +(define-public gnome-shell-extension-dock-ng + (package + (name "gnome-shell-extension-dock-ng") + (version "1.1.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ochi12/dock-ng") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q0v86n832kgqz0x3m0k75m09yy7r8qk3rf3niq06cs00ypm3xl6")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f + #:make-flags #~(list (string-append "INSTALLBASE=" + #$output + "/share/gnome-shell/extensions") + (string-append "VERSION=" + #$version)) + #:phases + #~(modify-phases %standard-phases + (delete 'bootstrap) + (delete 'configure) + (add-before 'build 'set-environment-variables + (lambda _ + (setenv "HOME" (getcwd)) + (setenv "XDG_CACHE_HOME" (string-append (getcwd) "/.cache")))) + (replace 'build + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke `("make" "build" ,@make-flags)))) + (replace 'install + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke `("make" "install" ,@make-flags))))))) + (native-inputs + (list `(,glib "bin") + gnome-shell + intltool + pkg-config)) + (propagated-inputs + (list glib)) + (synopsis "Lightweight dock for GNOME Shell") + (description "This package provides a lightweight, non-fixed, dock for GNOME +Shell, built on the dash. It implements a batteries included approach, with +little configuration involved and a small feature set including adaptive +intellihide and multimonitor support.") + (home-page "https://github.com/ochi12/dock-ng") + (license license:gpl3+))) + (define-public gnome-shell-extension-gsconnect (package (name "gnome-shell-extension-gsconnect") |
