~whereiseveryone/guixrus

860047ba465cb05dc21764f9c933f331aac16927 — jgart 4 months ago f6f391c remove-failing-sway
remove failing sway stuff
1 files changed, 0 insertions(+), 52 deletions(-)

M guixrus/packages/wayland-xyz.scm
M guixrus/packages/wayland-xyz.scm => guixrus/packages/wayland-xyz.scm +0 -52
@@ 195,55 195,3 @@ wayfire and other wlroots based compositors. It is also compatible with Mir.")
            (sha256
             (base32
              "1adjg96mz0ghjzsgp9hrdr622shrvqmjcz5sxksfcka2fx7idmqs"))))))

(define-public wlroots-latest
  (package
   (inherit wlroots)
   (name "wlroots-latest")
   (version "0.15")
   (source (origin
            (method git-fetch)
            (uri (git-reference
                  (url "https://gitlab.freedesktop.org/wlroots/wlroots")
                  (commit version)))
            (file-name (git-file-name name version))
            (sha256
             (base32
              "00s73nhi3sc48l426jdlqwpclg41kx1hv0yk4yxhbzw19gqpfm1h"))))
   (propagated-inputs (modify-inputs (package-propagated-inputs wlroots)
                        (prepend libdrm-latest)
                        (replace "wayland-protocols"
                                 wayland-protocols-next)))))

(define-public wlroots-seatd
  (package
   (inherit wlroots-latest)
   (name "wlroots-seatd")
   (propagated-inputs (modify-inputs (package-propagated-inputs wlroots-latest)))))

(define-public sway-latest
  (package
   (inherit sway)
   (name "sway-latest")
   (version "1.7")
   (source (origin
            (method git-fetch)
            (uri (git-reference
                  (url "https://github.com/swaywm/sway")
                  (commit version)))
            (file-name (git-file-name name version))
            (sha256
             (base32
              "0ss3l258blyf2d0lwd7pi7ga1fxfj8pxhag058k7cmjhs3y30y5l"))))
   (inputs (modify-inputs (package-inputs sway)
             (prepend libdrm-latest)
             (replace "wlroots" wlroots-latest)))
   (native-inputs (modify-inputs (package-native-inputs sway)
                    (replace "wayland-protocols" wayland-protocols-next)))))

(define-public sway-seatd
  (package
   (inherit sway-latest)
   (name "sway-seatd")
   (inputs (modify-inputs (package-inputs sway-latest)
             (replace "wlroots" wlroots-seatd)))))