Skip to content
Snippets Groups Projects
Unverified Commit 16a7a745 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

Revert "gnu: libinput: Update to 1.9.3."

This reverts commit 5f508374.

Ninja FTBFS on armhf-linux and thus cannot build libinput.
parent aa5c2063
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,6 @@ (define-module (gnu packages freedesktop) ...@@ -33,7 +33,6 @@ (define-module (gnu packages freedesktop)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
#:use-module (guix build-system perl) #:use-module (guix build-system perl)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (gnu packages acl) #:use-module (gnu packages acl)
...@@ -68,7 +67,6 @@ (define-module (gnu packages freedesktop) ...@@ -68,7 +67,6 @@ (define-module (gnu packages freedesktop)
#:use-module (gnu packages perl) #:use-module (gnu packages perl)
#:use-module (gnu packages perl-check) #:use-module (gnu packages perl-check)
#:use-module (gnu packages python) #:use-module (gnu packages python)
#:use-module (gnu packages valgrind)
#:use-module (gnu packages w3m) #:use-module (gnu packages w3m)
#:use-module (gnu packages web) #:use-module (gnu packages web)
#:use-module (gnu packages xml) #:use-module (gnu packages xml)
...@@ -143,22 +141,19 @@ (define-public xdg-utils ...@@ -143,22 +141,19 @@ (define-public xdg-utils
(define-public libinput (define-public libinput
(package (package
(name "libinput") (name "libinput")
(version "1.9.3") (version "1.7.3")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://freedesktop.org/software/libinput/" (uri (string-append "https://freedesktop.org/software/libinput/"
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"09wkc5qqk1k2a68cwfy4x853z8z35wf2qkijh66kacsvc2fjq394")))) "07fbzxddvhjcch43hdxb24sj7ri96zzpcjalvsicmw0i4wnn2v89"))))
(build-system meson-build-system) (build-system gnu-build-system)
(arguments '(#:configure-flags '("-Ddocumentation=false")))
(native-inputs (native-inputs
`(("cairo" ,cairo) `(("cairo" ,cairo)
("check" ,check)
("gtk+" ,gtk+) ("gtk+" ,gtk+)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)))
("valgrind" ,valgrind)))
(propagated-inputs (propagated-inputs
`(("libudev" ,eudev))) ; required by libinput.pc `(("libudev" ,eudev))) ; required by libinput.pc
(inputs (inputs
...@@ -177,17 +172,13 @@ (define-public libinput-minimal ...@@ -177,17 +172,13 @@ (define-public libinput-minimal
(package (inherit libinput) (package (inherit libinput)
(name "libinput-minimal") (name "libinput-minimal")
(native-inputs (native-inputs
`(("check" ,check) `(("pkg-config" ,pkg-config)))
("pkg-config" ,pkg-config)
("valgrind" ,valgrind)))
(inputs (inputs
`(("libevdev" ,libevdev) `(("libevdev" ,libevdev)
("mtdev" ,mtdev))) ("mtdev" ,mtdev)))
(arguments (arguments
'(#:configure-flags `(#:configure-flags
'("-Dlibwacom=false" '("--disable-libwacom")))))
"-Ddocumentation=false"
"-Ddebug-gui=false"))))) ; requires gtk+@3
(define-public libxdg-basedir (define-public libxdg-basedir
(package (package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment