From 80323062f8e966ed6401a1e4deaeca85ab9a116d Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Sat, 18 Oct 2025 17:58:12 +0200 Subject: [PATCH 1/5] hyprtoolkit: init at 0.1.0 --- pkgs/by-name/hy/hyprtoolkit/package.nix | 67 +++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 pkgs/by-name/hy/hyprtoolkit/package.nix diff --git a/pkgs/by-name/hy/hyprtoolkit/package.nix b/pkgs/by-name/hy/hyprtoolkit/package.nix new file mode 100644 index 000000000000..68a082710cd8 --- /dev/null +++ b/pkgs/by-name/hy/hyprtoolkit/package.nix @@ -0,0 +1,67 @@ +{ + lib, + gcc15Stdenv, + fetchFromGitHub, + cmake, + pkg-config, + hyprwayland-scanner, + wayland-scanner, + aquamarine, + cairo, + hyprgraphics, + hyprlang, + hyprutils, + iniparser, + libdrm, + libgbm, + libGL, + libxkbcommon, + pango, + pixman, + wayland, + wayland-protocols, +}: + +gcc15Stdenv.mkDerivation (finalAttrs: { + pname = "hyprtoolkit"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "hyprwm"; + repo = "hyprtoolkit"; + tag = "v${finalAttrs.version}"; + hash = "sha256-AQCTRH8VsrHzOHL0ueXt/6OQtSSfZbT3XUBI4sq8rx4="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + hyprwayland-scanner + wayland-scanner + ]; + + buildInputs = [ + aquamarine + cairo + hyprgraphics + hyprlang + hyprutils + iniparser + libdrm + libgbm + libGL + libxkbcommon + pango + pixman + wayland + wayland-protocols + ]; + + meta = { + inherit (finalAttrs.src.meta) homepage; + description = "A modern C++ Wayland-native GUI toolkit"; + license = lib.licenses.bsd3; + teams = [ lib.teams.hyprland ]; + platforms = with lib.platforms; linux ++ freebsd; + }; +}) From 9d5824e6a770a5846713226a8e84ab5fb5cf8997 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Sat, 18 Oct 2025 17:58:28 +0200 Subject: [PATCH 2/5] hyprwire: init at 0.1.0 --- pkgs/by-name/hy/hyprwire/package.nix | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pkgs/by-name/hy/hyprwire/package.nix diff --git a/pkgs/by-name/hy/hyprwire/package.nix b/pkgs/by-name/hy/hyprwire/package.nix new file mode 100644 index 000000000000..2cafdd96a1ec --- /dev/null +++ b/pkgs/by-name/hy/hyprwire/package.nix @@ -0,0 +1,42 @@ +{ + lib, + gcc15Stdenv, + fetchFromGitHub, + cmake, + pkg-config, + hyprutils, + libffi, + pugixml, +}: + +gcc15Stdenv.mkDerivation (finalAttrs: { + pname = "hyprwire"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "hyprwm"; + repo = "hyprwire"; + tag = "v${finalAttrs.version}"; + hash = "sha256-84KqFPakU1Pv7axkwbSi1D5XssSHIW8B2xduOUq5Mw4="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + buildInputs = [ + pugixml + hyprutils + libffi + ]; + + meta = { + inherit (finalAttrs.src.meta) homepage; + description = "A fast and consistent wire protocol for IPC "; + license = lib.licenses.bsd3; + teams = [ lib.teams.hyprland ]; + platforms = with lib.platforms; linux ++ freebsd; + mainProgram = "hyprwire"; + }; +}) From 1be76d1cf4947535b59ad64434f9c1b66be5ade0 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Sat, 18 Oct 2025 17:58:47 +0200 Subject: [PATCH 3/5] hyprpwcenter: init at 0.1.0 --- pkgs/by-name/hy/hyprpwcenter/package.nix | 52 ++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 pkgs/by-name/hy/hyprpwcenter/package.nix diff --git a/pkgs/by-name/hy/hyprpwcenter/package.nix b/pkgs/by-name/hy/hyprpwcenter/package.nix new file mode 100644 index 000000000000..095cf994f61b --- /dev/null +++ b/pkgs/by-name/hy/hyprpwcenter/package.nix @@ -0,0 +1,52 @@ +{ + lib, + gcc15Stdenv, + fetchFromGitHub, + cmake, + pkg-config, + aquamarine, + cairo, + hyprgraphics, + hyprtoolkit, + hyprutils, + libdrm, + pipewire, + pixman, +}: + +gcc15Stdenv.mkDerivation (finalAttrs: { + pname = "hyprpwcenter"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "hyprwm"; + repo = "hyprpwcenter"; + tag = "v${finalAttrs.version}"; + hash = "sha256-/kE3VlkJjpFxjbgdKCFumg/Oxn4n7Z//5atAObpPiRY="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + buildInputs = [ + aquamarine + cairo + hyprgraphics + hyprtoolkit + hyprutils + libdrm + pipewire + pixman + ]; + + meta = { + inherit (finalAttrs.src.meta) homepage; + description = "A GUI Pipewire control center"; + license = lib.licenses.bsd3; + teams = [ lib.teams.hyprland ]; + platforms = with lib.platforms; linux ++ freebsd; + mainProgram = "hyprpwcenter"; + }; +}) From 64fbca78da7ddfaf1bc9722c265070c09c4e94a5 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Sat, 18 Oct 2025 17:59:18 +0200 Subject: [PATCH 4/5] hyprlauncher: init at 0.1.0 --- pkgs/by-name/hy/hyprlauncher/package.nix | 58 ++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 pkgs/by-name/hy/hyprlauncher/package.nix diff --git a/pkgs/by-name/hy/hyprlauncher/package.nix b/pkgs/by-name/hy/hyprlauncher/package.nix new file mode 100644 index 000000000000..3ca479b381a2 --- /dev/null +++ b/pkgs/by-name/hy/hyprlauncher/package.nix @@ -0,0 +1,58 @@ +{ + lib, + gcc15Stdenv, + fetchFromGitHub, + cmake, + pkg-config, + aquamarine, + cairo, + hyprgraphics, + hyprlang, + hyprtoolkit, + hyprutils, + hyprwire, + libdrm, + libqalculate, + libxkbcommon, + pixman, +}: + +gcc15Stdenv.mkDerivation (finalAttrs: { + pname = "hyprlauncher"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "hyprwm"; + repo = "hyprlauncher"; + tag = "v${finalAttrs.version}"; + hash = "sha256-6JVor77g1LR/22lZYCArUm/geIXE0aGJZ4DHIlgSOj4="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + buildInputs = [ + aquamarine + cairo + hyprgraphics + hyprlang + hyprtoolkit + hyprutils + hyprwire + libdrm + libqalculate + libxkbcommon + pixman + ]; + + meta = { + inherit (finalAttrs.src.meta) homepage; + description = "A multipurpose and versatile launcher / picker for Hyprland"; + license = lib.licenses.bsd3; + teams = [ lib.teams.hyprland ]; + platforms = with lib.platforms; linux ++ freebsd; + mainProgram = "hyprlauncher"; + }; +}) From a7a7793ddc846ea35118f654850b112dda7752a4 Mon Sep 17 00:00:00 2001 From: SchweGELBin Date: Mon, 20 Oct 2025 13:04:23 +0200 Subject: [PATCH 5/5] hyprtoolkit: 0.1.0 -> 0.1.1 --- pkgs/by-name/hy/hyprtoolkit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/hy/hyprtoolkit/package.nix b/pkgs/by-name/hy/hyprtoolkit/package.nix index 68a082710cd8..f59f1aa4bda3 100644 --- a/pkgs/by-name/hy/hyprtoolkit/package.nix +++ b/pkgs/by-name/hy/hyprtoolkit/package.nix @@ -24,13 +24,13 @@ gcc15Stdenv.mkDerivation (finalAttrs: { pname = "hyprtoolkit"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprtoolkit"; tag = "v${finalAttrs.version}"; - hash = "sha256-AQCTRH8VsrHzOHL0ueXt/6OQtSSfZbT3XUBI4sq8rx4="; + hash = "sha256-SjZAlFpZ/ZpYXj59toamF4qx5rC8RP0U/yEsPVniyI8="; }; nativeBuildInputs = [