diff options
author | Ahmad Draidi <a.r.draidi@redscript.org> | 2023-08-10 22:16:38 +0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-09-05 19:52:11 -0400 |
commit | e68581080e726b0ed23a48c05f7b38ad432de673 (patch) | |
tree | 548756421aafe492217c9f25143ebfe8192c2026 /gnu/packages/arcan.scm | |
parent | c3e001f368e15635b222db4b5fe7bfed47742bed (diff) | |
download | guix-e68581080e726b0ed23a48c05f7b38ad432de673.tar guix-e68581080e726b0ed23a48c05f7b38ad432de673.tar.gz |
gnu: arcan-wayland: Deprecate in favor of arcan.
* gnu/packages/arcan.scm (arcan-wayland): Rewrite as a deprecated
alias for arcan.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages/arcan.scm')
-rw-r--r-- | gnu/packages/arcan.scm | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm index 93e5081201..4ca76edbec 100644 --- a/gnu/packages/arcan.scm +++ b/gnu/packages/arcan.scm @@ -245,34 +245,6 @@ engine with a Lua scripting interface.") as a window under Arcan.") (license (list license:bsd-3 license:expat)))) +;; Package was merged into arcan in upstream. (define-public arcan-wayland - (package - (inherit arcan) - (name "arcan-wayland") - (native-inputs - (list pkg-config)) - (inputs - (list arcan - libseccomp - libxkbcommon - mesa - wayland - wayland-protocols)) - (arguments - `(#:tests? #f - #:phases - (modify-phases %standard-phases - (add-before 'configure 'chdir - (lambda _ - (chdir "src/tools/waybridge") - #t)) - (add-after 'unpack 'fix-cmake-find-shmif - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake" - (("/usr/local") (assoc-ref inputs "arcan"))) - #t))))) - (synopsis "Wayland protocol service for Arcan") - (description "Arcan-wayland (waybridge) bridges Wayland connections -with an Arcan connection point. It allows Wayland compatible clients -to connect and render using Arcan.") - (license license:bsd-3))) + (deprecated-package "arcan-wayland" arcan)) |