mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
728 B
Nix
24 lines
728 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprland-activewindow";
|
|
version = "1.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FieldOfClay";
|
|
repo = "hyprland-activewindow";
|
|
rev = "v${version}";
|
|
hash = "sha256-kRxA2DLbbABPJFwv/L7yeNJ8eqNUbuV6U/PB5iJNoAw=";
|
|
};
|
|
|
|
cargoHash = "sha256-s3Ho0+OzuLuWqFvaBu9NLXoasByHSuun9eJGAAISOJc=";
|
|
|
|
meta = with lib; {
|
|
description = "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";
|
|
};
|
|
}
|