mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
30 lines
795 B
Nix
30 lines
795 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprland-autoname-workspaces";
|
|
version = "1.1.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprland-community";
|
|
repo = "hyprland-autoname-workspaces";
|
|
rev = version;
|
|
hash = "sha256-oXVKee3YAMXtVJBqJGt1SpH0KFzvIB278EN69A2OeXY=";
|
|
};
|
|
|
|
cargoHash = "sha256-Ub7jU9c0I/w4h1DBFvimP7SjkabkP9EF+qtHAPtdPFI=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Automatically rename workspaces with icons of started applications";
|
|
homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ donovanglover ];
|
|
mainProgram = "hyprland-autoname-workspaces";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|