mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-09-18 20:54:37 +00:00
wayland-protocols in Guix has been updated to 1.32, this package is not needed. * rosenthal/packages/freedesktop.scm (wayland-protocols-1.31): Delete variable. * rosenthal/packages/wm.scm (wlroots-for-hyprland)[propagated-inputs]: Don't replace wayland-protocols.
33 lines
1.1 KiB
Scheme
33 lines
1.1 KiB
Scheme
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space>
|
|
;;
|
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
(define-module (rosenthal packages freedesktop)
|
|
#:use-module (guix download)
|
|
#:use-module (guix gexp)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix utils)
|
|
#:use-module (gnu packages check)
|
|
#:use-module (gnu packages freedesktop)
|
|
#:use-module (gnu packages python))
|
|
|
|
;; https://issues.guix.gnu.org/63847
|
|
(define-public libinput-minimal-1.23.0
|
|
(package
|
|
(inherit libinput-minimal)
|
|
(name "libinput-minimal")
|
|
(version "1.23.0")
|
|
(source (origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://gitlab.freedesktop.org/libinput/libinput.git")
|
|
(commit version)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32
|
|
"0wnqfnxxvf9jclh64hrb0scn3s1dmwdkmqf7hp0cfmjz5n5nnv7d"))))
|
|
(native-inputs
|
|
(modify-inputs (package-native-inputs libinput)
|
|
(append python-minimal-wrapper python-pytest)))))
|