Merge pull request #182423 from dit7ya/wayshot

wayshot: init at 1.1.9

authored by Mario Rodas and committed by GitHub 74bb5d9f 673e6927

+25
+23
pkgs/tools/misc/wayshot/default.nix
···
··· 1 + { lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "wayshot"; 5 + version = "1.1.9"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "waycrate"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-4tzL/9p/qBCSWX+O7wZlKi9qb7mIt+hoxcQY7cWlFoU="; 12 + }; 13 + 14 + cargoHash = "sha256-/FAI2VUoyQ1+3CuA7sEpeF5oeJdGB9CRZEp1leLnTh4="; 15 + 16 + meta = with lib; { 17 + description = "A native, blazing-fast screenshot tool for wlroots based compositors such as sway and river"; 18 + homepage = "https://github.com/waycrate/wayshot"; 19 + license = licenses.bsd2; 20 + maintainers = [ maintainers.dit7ya ]; 21 + platforms = platforms.linux; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 27801 27802 waybar = callPackage ../applications/misc/waybar {}; 27803 27804 wbg = callPackage ../applications/misc/wbg { }; 27805 27806 hikari = callPackage ../applications/window-managers/hikari {
··· 27801 27802 waybar = callPackage ../applications/misc/waybar {}; 27803 27804 + wayshot = callPackage ../tools/misc/wayshot { }; 27805 + 27806 wbg = callPackage ../applications/misc/wbg { }; 27807 27808 hikari = callPackage ../applications/window-managers/hikari {