Skip to content

Commit

Permalink
hyprland-activewindow: init at 1.0.1
Browse files Browse the repository at this point in the history
fix(hyprland-activewindow): resolve review issues

- avoid using repo = pname
- removal of period at end of description
- wrong homepage
- change platform to platforms.linux, since Hyprland is specific to Linux.

Co-authored-by: Donovan Glover <donovan@dglover.co>

Add donovanglover as co-maintainer
  • Loading branch information
kiike committed Apr 20, 2024
1 parent ea24372 commit 72c2b8b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/by-name/hy/hyprland-activewindow/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
pname = "hyprland-activewindow";
version = "1.0.1";

src = fetchFromGitHub {
owner = "FieldOfClay";
repo = "hyprland-activewindow";
rev = "v${version}";
hash = "sha256-8pzm8uIyvlz4nHbxtmbMblFIj38M2VsenaKzJ9di1Do=";
};

cargoHash = "sha256-wIF0qa1dyZlcsLPL2TflFQFPm4Pe9TWHe1F2L1YccZ8=";

meta = with lib; {
description = "A multi-monitor-aware Hyprland workspace widget helper";
homepage = "https://github.com/FieldofClay/hyprland-activewindow";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kiike donovanglover ];
mainProgram = "hyprland-activewindow";
};
}

0 comments on commit 72c2b8b

Please sign in to comment.