python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / wayshot / default.nix
blob64bfbe6aa4ea6c04df47afd6c6ac2e460ac2fb73
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "wayshot";
5   version = "1.2.2";
7   src = fetchFromGitHub {
8     owner = "waycrate";
9     repo = pname;
10     rev = version;
11     hash = "sha256-/uZ98ICdPTilUD3vBEbJ4AxGWY1xIbkK6O+bkhqIUKA=";
12   };
14   cargoHash = "sha256-j/gSrXY5n/zW3IogHewyrupTKtEm5EtOzfOzglyTP9A=";
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   };