diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2020-02-21 17:32:15 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-02-27 11:31:19 +0100 |
commit | c456d18b50f764d008ef46029201ef20584cd6f7 (patch) | |
tree | 09913ddf47fb70bb873c237be21a8476b149feb3 /gnu/packages | |
parent | f6a151cdc620b037fed1b899ad40a073111786e3 (diff) | |
download | patches-c456d18b50f764d008ef46029201ef20584cd6f7.tar patches-c456d18b50f764d008ef46029201ef20584cd6f7.tar.gz |
gnu: gnome-shell-extension-noannoyance: Use the copy-build-system.
* gnu/packages/gnome-xyz.scm (gnome-shell-extension-noannoyance):
Use the copy-build-system.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 87830194fd..5215658912 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -380,18 +380,10 @@ into a single panel, similar to that found in KDE Plasma and Windows 7+.") (base32 "0fa8l3xlh8kbq07y4385wpb908zm6x53z81q16xlmin97dln32hh")) (file-name (git-file-name name version)))) - (build-system trivial-build-system) + (build-system copy-build-system) (arguments - '(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let ((dst (string-append - (assoc-ref %outputs "out") - "/share/gnome-shell/extensions/" - "noannoyance@daase.net"))) - (mkdir-p dst) - (copy-recursively (assoc-ref %build-inputs "source") dst))))) + '(#:install-plan + '(("." "share/gnome-shell/extensions/noannoyance@daase.net")))) (synopsis "Removes 'Window is ready' annotation") (description "One of the many extensions, that remove this message. It uses ES6 syntax and claims to be more actively maintained than others.") |