biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / wayshot / default.nix
blob0f46dc85a1cf9fd356648d5866896aac5e53ddeb
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "wayshot";
7   version = "1.3.1";
9   src = fetchFromGitHub {
10     owner = "waycrate";
11     repo = pname;
12     rev = version;
13     hash = "sha256-nUpIN4WTePtFZTmKAjv0tgj4VTdZeXjoQX6am9+M3ig=";
14   };
16   cargoHash = "sha256-1Y9ymodZHtxHzhudjGbkP2ohMaBMOD9K+GpUoNmzHQs=";
18   # tests are off as they are broken and pr for integration testing is still WIP
19   doCheck = false;
21   meta = with lib; {
22     description = "Native, blazing-fast screenshot tool for wlroots based compositors such as sway and river";
23     homepage = "https://github.com/waycrate/wayshot";
24     license = licenses.bsd2;
25     maintainers = with maintainers; [ dit7ya id3v1669 ];
26     platforms = platforms.linux;
27     mainProgram = "wayshot";
28   };