From b2b2433a5f876dd115072ed6baeabbfcf8042e58 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Wed, 2 Jul 2025 19:06:53 -0500 Subject: [PATCH] fix name and sourcing --- gchannel/packages/hyprland.scm | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/gchannel/packages/hyprland.scm b/gchannel/packages/hyprland.scm index 65318ae..e8e5766 100644 --- a/gchannel/packages/hyprland.scm +++ b/gchannel/packages/hyprland.scm @@ -1,5 +1,5 @@ -(define-module (gchannel packages hyprland-protocols) +(define-module (gchannel packages hyprland) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) @@ -98,16 +98,14 @@ (package (name "hyprland") (version "0.49.1") - -(source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/3l0w/Hyprland.git") - (commit "821497bc2379b8bef091c455bbfbfeec19f5ae4b) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0njqyl6vsqlb8dv4wdn5h34dk67yqzc99gvwa13j252cv3n0bpya")))))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/3l0w/Hyprland.git") + (commit "821497bc2379b8bef091c455bbfbfeec19f5ae4b"))) + (sha256 + (base32 "0njqyl6vsqlb8dv4wdn5h34dk67yqzc99gvwa13j252cv3n0bpya")))) ;; The project's native build system is Meson. (build-system meson-build-system)