From 58f6fe9a7bbf0a07ec23b09b1ac307b25bb1b929 Mon Sep 17 00:00:00 2001 From: Daniel Ziltener Date: Tue, 28 Nov 2023 00:01:18 +0100 Subject: [PATCH] . --- packages/hyprland.guix | 47 ------------------------------------------ 1 file changed, 47 deletions(-) delete mode 100644 packages/hyprland.guix diff --git a/packages/hyprland.guix b/packages/hyprland.guix deleted file mode 100644 index 71ffc5e..0000000 --- a/packages/hyprland.guix +++ /dev/null @@ -1,47 +0,0 @@ -(define-module - (gnu packages hyprland) - #:use-module (guix packages) - #:use-module (guix download) - #:use-module (guix build-system meson) - #:use-module (guix licenses)) - -(define-public hyprland - (package - (name "hyprland") - (version "0.32.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hyprvm/Hyprland") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "asdf")))) - (build-system meson-build-system) - (native-inputs - (list gcc-12 - jq - ninja - meson - pkg-config - wayland-scanner)) - (inputs - (list cairo - git - hyprland-protocols - libGL - libdrm - libinput - libxkbcommon - mesa - udis86 - wayland - wayland-protocols - pango - pciutils - wlroots)) - (home-page "https://www.hyprland.org") - (synopsis "Dynamic tiling Wayland compositor based on wlroots") - (description "Hyprland.") - (license license:bsd-3)))