Merge pull request #302017 from id3v1669/wayshot

wayshot 1.3.0 -> 1.3.1
This commit is contained in:
Aleksana 2024-04-18 17:37:44 +08:00 committed by GitHub
commit 9ae064b58d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 6 deletions

View file

@ -8432,6 +8432,12 @@
github = "Icy-Thought"; github = "Icy-Thought";
githubId = 53710398; githubId = 53710398;
}; };
id3v1669 = {
name = "id3v1669";
email = "id3v1669@gmail.com";
github = "id3v1669";
githubId = 57532211;
};
idlip = { idlip = {
name = "Dilip"; name = "Dilip";
email = "igoldlip@gmail.com"; email = "igoldlip@gmail.com";

View file

@ -1,23 +1,28 @@
{ lib, fetchFromGitHub, rustPlatform }: { lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "wayshot"; pname = "wayshot";
version = "1.3.0"; version = "1.3.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "waycrate"; owner = "waycrate";
repo = pname; repo = pname;
rev = version; 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; { meta = with lib; {
description = "A native, blazing-fast screenshot tool for wlroots based compositors such as sway and river"; description = "A native, blazing-fast screenshot tool for wlroots based compositors such as sway and river";
homepage = "https://github.com/waycrate/wayshot"; homepage = "https://github.com/waycrate/wayshot";
license = licenses.bsd2; license = licenses.bsd2;
maintainers = [ maintainers.dit7ya ]; maintainers = with maintainers; [ dit7ya id3v1669 ];
platforms = platforms.linux; platforms = platforms.linux;
mainProgram = "wayshot"; mainProgram = "wayshot";
}; };