Skip to content

Commit

Permalink
wayshot: 1.3.0 -> 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
id3v1669 committed Apr 8, 2024
1 parent 73efb6e commit 31476f4
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions pkgs/tools/misc/wayshot/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
{ lib, fetchFromGitHub, rustPlatform }:

{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "wayshot";
version = "1.3.0";
version = "1.3.1";

src = fetchFromGitHub {
owner = "waycrate";
repo = pname;
rev = version;
hash = "sha256-WN1qlV6vpIn0uNiE+rXeQTMscNYqkgFytVBc6gJzvyU=";
hash = "sha256-nUpIN4WTePtFZTmKAjv0tgj4VTdZeXjoQX6am9+M3ig=";
};

cargoHash = "sha256-Hfgr+wWC5zUdHhFMwOBt57h2r94OpdJ1MQpckhYgKQQ=";
cargoHash = "sha256-1Y9ymodZHtxHzhudjGbkP2ohMaBMOD9K+GpUoNmzHQs=";

# tests are off as they are broken and pr for integration testing is still WIP
doCheck = false;

meta = with lib; {
description = "A native, blazing-fast screenshot tool for wlroots based compositors such as sway and river";
homepage = "https://github.com/waycrate/wayshot";
license = licenses.bsd2;
maintainers = [ maintainers.dit7ya ];
maintainers = with maintainers; [ dit7ya id3v1669 ];
platforms = platforms.linux;
mainProgram = "wayshot";
};
Expand Down

0 comments on commit 31476f4

Please sign in to comment.