czkawka: 0.3.2 -> 0.3.3 (#146757)

* czkawka: add myself as maintainer

* czkawka: 3.2.0 -> 3.3.0

* czkawka: add testVersion

authored by 0x4A6F and committed by GitHub 255c2849 7464e88b

+12 -5
+12 -5
pkgs/tools/misc/czkawka/default.nix
··· 8 , gdk-pixbuf 9 , atk 10 , gtk3 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "czkawka"; 15 - version = "3.2.0"; 16 17 src = fetchFromGitHub { 18 owner = "qarmin"; 19 - repo = pname; 20 rev = version; 21 - sha256 = "sha256-OBe6nk5C3kO5Lkas9+G+VY3xAzY7SWx8W5CkSbaYJ9Y="; 22 }; 23 24 - cargoSha256 = "sha256-Jghkf1mX5ic7zB2KmtOZbSxgF8C6KjRdGG1Yt+dzylI="; 25 26 nativeBuildInputs = [ 27 pkg-config ··· 36 gtk3 37 ]; 38 39 meta = with lib; { 40 description = "A simple, fast and easy to use app to remove unnecessary files from your computer"; 41 homepage = "https://github.com/qarmin/czkawka"; 42 license = with licenses; [ mit ]; 43 - maintainers = with maintainers; [ yanganto ]; 44 }; 45 }
··· 8 , gdk-pixbuf 9 , atk 10 , gtk3 11 + , testVersion 12 + , czkawka 13 }: 14 15 rustPlatform.buildRustPackage rec { 16 pname = "czkawka"; 17 + version = "3.3.0"; 18 19 src = fetchFromGitHub { 20 owner = "qarmin"; 21 + repo = "czkawka"; 22 rev = version; 23 + sha256 = "0mikgnsqxj8dgapr2k7i9i8mmsza15kp4nasyd6l1vp2cqy8aki6"; 24 }; 25 26 + cargoSha256 = "009zfy4lk8y51h1wi71mrjp6kc7xnk3r8jlbxvhyqslhqd9w10fv"; 27 28 nativeBuildInputs = [ 29 pkg-config ··· 38 gtk3 39 ]; 40 41 + passthru.tests.version = testVersion { 42 + package = czkawka; 43 + command = "czkawka_cli --version"; 44 + }; 45 + 46 meta = with lib; { 47 description = "A simple, fast and easy to use app to remove unnecessary files from your computer"; 48 homepage = "https://github.com/qarmin/czkawka"; 49 license = with licenses; [ mit ]; 50 + maintainers = with maintainers; [ yanganto _0x4A6F ]; 51 }; 52 }