szyszka: init at 2.0.0

This commit is contained in:
Ilan Joselevich 2021-07-29 18:38:17 +03:00
parent bcad474c4a
commit 12326791a7
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, glib
, cairo
, pango
, atk
, gdk-pixbuf
, gtk3
}:
rustPlatform.buildRustPackage rec {
pname = "szyszka";
version = "2.0.0";
src = fetchFromGitHub {
owner = "qarmin";
repo = pname;
rev = version;
sha256 = "sha256-TQwDvkWWlk09kVVaVI56isJi+X9UXWnoz+2PVyK9BGc=";
};
cargoSha256 = "sha256-2uyMA2nIOPkc5+qImFn3eUVq2AxHu3Xj91TpkKswjao=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
glib
cairo
pango
atk
gdk-pixbuf
gtk3
];
meta = with lib; {
description = "A simple but powerful and fast bulk file renamer";
homepage = "https://github.com/qarmin/szyszka";
license = with licenses; [ mit ];
maintainers = with maintainers; [ kranzes ];
};
}

View file

@ -14472,6 +14472,8 @@ in
stdenv = gccStdenv;
};
szyszka = callPackage ../tools/misc/szyszka { };
taplo-cli = callPackage ../development/tools/taplo-cli {
inherit (darwin.apple_sdk.frameworks) Security;
};