From 73efb6e71905b94e84fff46109df5a99dedffd2e Mon Sep 17 00:00:00 2001 From: id3v1669 Date: Mon, 8 Apr 2024 14:24:11 +0800 Subject: [PATCH 1/2] maintainers: add id3v1669 --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 80ec595554f5c..dfcbfa8d6c2a6 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -8341,6 +8341,12 @@ github = "Icy-Thought"; githubId = 53710398; }; + id3v1669 = { + name = "id3v1669"; + email = "id3v1669@gmail.com"; + github = "id3v1669"; + githubId = 57532211; + }; idlip = { name = "Dilip"; email = "igoldlip@gmail.com"; From 31476f448651e1f149dfd025009e66f447eab03b Mon Sep 17 00:00:00 2001 From: id3v1669 Date: Mon, 8 Apr 2024 14:37:03 +0800 Subject: [PATCH 2/2] wayshot: 1.3.0 -> 1.3.1 --- pkgs/tools/misc/wayshot/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/wayshot/default.nix b/pkgs/tools/misc/wayshot/default.nix index 82b7631f5bed3..e8d5576af51e4 100644 --- a/pkgs/tools/misc/wayshot/default.nix +++ b/pkgs/tools/misc/wayshot/default.nix @@ -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"; };