mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-09-18 12:44:37 +00:00
rosenthal: grimblast: Wrap script.
* rosenthal/packages/wm.scm (grimblast)[argument]<#:phases>: Remove phase 'patch-script-dependencies. Add phase 'wrap. [inputs]: Add guile-3.0.
This commit is contained in:
parent
99ad73db4f
commit
5791ad387d
@ -15,6 +15,7 @@
|
|||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages man)
|
#:use-module (gnu packages man)
|
||||||
#:use-module (gnu packages pciutils)
|
#:use-module (gnu packages pciutils)
|
||||||
@ -214,15 +215,18 @@ customization, and more.")
|
|||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir "grimblast")))
|
(chdir "grimblast")))
|
||||||
(add-after 'chdir 'patch-script-dependencies
|
(add-after 'install 'wrap
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* "grimblast"
|
(let ((grimblast (string-append #$output "/bin/grimblast")))
|
||||||
(("\\b(date|grim|jq|notify-send|slurp|hyprctl|wl-copy)\\b"
|
(wrap-script grimblast
|
||||||
_ binary)
|
`("PATH" suffix
|
||||||
(search-input-file
|
,(map (lambda (program)
|
||||||
inputs (string-append "bin/" binary)))))))))
|
(dirname (search-input-file
|
||||||
|
inputs (string-append "/bin/" program))))
|
||||||
|
'("grim" "slurp" "hyprctl" "wl-copy" "jq"
|
||||||
|
"notify-send" "date"))))))))))
|
||||||
(native-inputs (list scdoc))
|
(native-inputs (list scdoc))
|
||||||
(inputs (list grim jq libnotify slurp hyprland wl-clipboard))
|
(inputs (list grim guile-3.0 jq libnotify slurp hyprland wl-clipboard))
|
||||||
(home-page "https://github.com/hyprwm/contrib")
|
(home-page "https://github.com/hyprwm/contrib")
|
||||||
(synopsis "Hyprland version of Grimshot")
|
(synopsis "Hyprland version of Grimshot")
|
||||||
(description "A Hyprland version of Grimshot.")
|
(description "A Hyprland version of Grimshot.")
|
||||||
|
Loading…
Reference in New Issue
Block a user