diff options
author | Freya Murphy <freya@freyacat.org> | 2024-08-06 20:14:18 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-08-06 20:14:18 -0400 |
commit | 30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46 (patch) | |
tree | 6e2ea23f8c9451594ec434b53da357d820c3cae5 /modules/freya/packages/freedesktop.scm | |
parent | update configs (diff) | |
download | dotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.tar.gz dotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.tar.bz2 dotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.zip |
update packages, remove rosenthall, update hyprland to 0.42.0-git staging
Diffstat (limited to 'modules/freya/packages/freedesktop.scm')
-rw-r--r-- | modules/freya/packages/freedesktop.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/freya/packages/freedesktop.scm b/modules/freya/packages/freedesktop.scm new file mode 100644 index 0000000..8924054 --- /dev/null +++ b/modules/freya/packages/freedesktop.scm @@ -0,0 +1,24 @@ +(define-module (freya packages freedesktop) + #:use-module (guix git-download) + #:use-module (guix packages) + #:use-module (gnu packages check) + #:use-module (gnu packages freedesktop) + #:use-module (gnu packages python)) + +(define-public libinput-minimal-1.26.1 + (package + (inherit libinput-minimal) + (name "libinput-minimal") + (version "1.26.1") + (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 + "094k23i10jjmgdzhv5lj7xpc3fgkwi9afcihf0l2fjj71ym8l9fy")))) + (native-inputs + (modify-inputs (package-native-inputs libinput) + (append python-minimal-wrapper python-pytest))))) |