From c8f273345664f7355f2c8695070bdfba34be30d8 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Tue, 12 Nov 2024 13:49:06 +0000 Subject: [PATCH 1/3] hyprutils: 0.2.3 -> 0.2.5 --- pkgs/by-name/hy/hyprutils/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/hy/hyprutils/package.nix b/pkgs/by-name/hy/hyprutils/package.nix index 907d482d3f0a..c4aa5056426a 100644 --- a/pkgs/by-name/hy/hyprutils/package.nix +++ b/pkgs/by-name/hy/hyprutils/package.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "hyprutils"; - version = "0.2.3"; + version = "0.2.5"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprutils"; rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-9gsVvcxW9bM3HMcnHHK+vYHOzXb1ODFqN+sJ4zIRsAU="; + hash = "sha256-SO/9G2h5nXCnMahTP9m46eqsu0Lr8A60Fhc0ABkx0Y0="; }; nativeBuildInputs = [ From 7d81e407089b019aa10e4a457ec0513a0eba2485 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:23:10 +0530 Subject: [PATCH 2/3] hyprutils: let it build on freebsd --- pkgs/by-name/hy/hyprutils/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/hy/hyprutils/package.nix b/pkgs/by-name/hy/hyprutils/package.nix index c4aa5056426a..37efd4bea5e4 100644 --- a/pkgs/by-name/hy/hyprutils/package.nix +++ b/pkgs/by-name/hy/hyprutils/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/hyprwm/hyprutils"; description = "Small C++ library for utilities used across the Hypr* ecosystem"; license = lib.licenses.bsd3; - platforms = lib.platforms.linux; + platforms = lib.platforms.linux ++ lib.platforms.freebsd; maintainers = with lib.maintainers; [ donovanglover johnrtitor From e6353955db2cafa2c0d57009af1f5d354d318d23 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:25:02 +0530 Subject: [PATCH 3/3] hyprlang: build on all platforms --- pkgs/by-name/hy/hyprlang/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/hy/hyprlang/package.nix b/pkgs/by-name/hy/hyprlang/package.nix index d856d5879d57..3b88af783303 100644 --- a/pkgs/by-name/hy/hyprlang/package.nix +++ b/pkgs/by-name/hy/hyprlang/package.nix @@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: { doCheck = true; - meta = with lib; { + meta = { homepage = "https://github.com/hyprwm/hyprlang"; description = "Official implementation library for the hypr config language"; - license = licenses.lgpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ iogamaster fufexan ]; + license = lib.licenses.lgpl3Only; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ iogamaster fufexan ]; }; })