From e12e058f03b90373be0ccac06168ee59cc3bb027 Mon Sep 17 00:00:00 2001 From: onatustun Date: Tue, 14 Oct 2025 09:28:49 +0100 Subject: [PATCH] hyprmon: init at 0.0.12 --- pkgs/by-name/hy/hyprmon/package.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/by-name/hy/hyprmon/package.nix diff --git a/pkgs/by-name/hy/hyprmon/package.nix b/pkgs/by-name/hy/hyprmon/package.nix new file mode 100644 index 000000000000..71996ccea9fa --- /dev/null +++ b/pkgs/by-name/hy/hyprmon/package.nix @@ -0,0 +1,28 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, +}: + +buildGoModule rec { + pname = "hyprmon"; + version = "0.0.12"; + + src = fetchFromGitHub { + owner = "erans"; + repo = "hyprmon"; + rev = "v${version}"; + hash = "sha256-jZUtdOMmpd75CyjaXdrqXcYxcQ9q7G2YGBHoUUvycX8="; + }; + + vendorHash = "sha256-THfdsr8jSvbcV1C2C2IJNvjeeonSZDfmCo6Ws2WreBA="; + + meta = with lib; { + description = "TUI monitor configuration tool for Hyprland with visual layout, drag-and-drop, and profile management"; + homepage = "https://github.com/erans/hyprmon"; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = with maintainers; [ onatustun ]; + mainProgram = "hyprmon"; + }; +}