mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Merge pull request #305404 from kiike/pkgs/hyprland-activewindow
hyprland-activewindow: init at 1.0.1
This commit is contained in:
commit
ed0e28efcc
24
pkgs/by-name/hy/hyprland-activewindow/package.nix
Normal file
24
pkgs/by-name/hy/hyprland-activewindow/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user