szyszka: 2.0.0 -> 3.0.0

This commit is contained in:
Ludovico Piero 2023-09-06 23:59:27 +10:00
parent 7cbc8215fd
commit f50963bbfa
No known key found for this signature in database
GPG key ID: 3911DD276CFE779C

View file

@ -7,24 +7,26 @@
, pango , pango
, atk , atk
, gdk-pixbuf , gdk-pixbuf
, gtk3 , gtk4
, wrapGAppsHook
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "szyszka"; pname = "szyszka";
version = "2.0.0"; version = "3.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "qarmin"; owner = "qarmin";
repo = pname; repo = "szyszka";
rev = version; rev = version;
sha256 = "sha256-TQwDvkWWlk09kVVaVI56isJi+X9UXWnoz+2PVyK9BGc="; hash = "sha256-LkXGKDFKaY+mg53ZEO4h2br/4eRle/QbSQJTVEMpAoY=";
}; };
cargoSha256 = "sha256-2uyMA2nIOPkc5+qImFn3eUVq2AxHu3Xj91TpkKswjao="; cargoHash = "sha256-WJR1BogNnQoZeOt5yBFzjYNZS8OmE84R1FbQpHTb7V0=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
wrapGAppsHook
]; ];
buildInputs = [ buildInputs = [
@ -33,13 +35,13 @@ rustPlatform.buildRustPackage rec {
pango pango
atk atk
gdk-pixbuf gdk-pixbuf
gtk3 gtk4
]; ];
meta = with lib; { meta = with lib; {
description = "A simple but powerful and fast bulk file renamer"; description = "A simple but powerful and fast bulk file renamer";
homepage = "https://github.com/qarmin/szyszka"; homepage = "https://github.com/qarmin/szyszka";
license = with licenses; [ mit ]; license = licenses.mit;
maintainers = with maintainers; [ kranzes ]; maintainers = with maintainers; [ kranzes ];
}; };
} }