biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / hyprland-autoname-workspaces / default.nix
blob7e3db80aadc828468b3f3917a6548d55e769146e
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "hyprland-autoname-workspaces";
8   version = "1.1.13";
10   src = fetchFromGitHub {
11     owner = "hyprland-community";
12     repo = "hyprland-autoname-workspaces";
13     rev = version;
14     hash = "sha256-JEzsbJcDX/qx1CMy+3UwcHOwFLPqyAG58MpGMtdSyYY=";
15   };
17   cargoHash = "sha256-Rpivw4VCVHjZywDwr4pajfGv/mkOdVrXVT/9Oe2Hw44=";
19   meta = with lib; {
20     description = "Automatically rename workspaces with icons of started applications";
21     homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces";
22     license = licenses.isc;
23     maintainers = with maintainers; [ donovanglover ];
24     mainProgram = "hyprland-autoname-workspaces";
25     platforms = platforms.linux;
26   };