szyszka: init at 2.0.0

launchpad/nixpkgs/master
Ilan Joselevich 3 years ago
parent bcad474c4a
commit 12326791a7
  1. 45
      pkgs/tools/misc/szyszka/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

@ -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;
};

Loading…
Cancel
Save