mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 07:17:38 +00:00
szyszka: init at 2.0.0
This commit is contained in:
parent
bcad474c4a
commit
12326791a7
45
pkgs/tools/misc/szyszka/default.nix
Executable file
45
pkgs/tools/misc/szyszka/default.nix
Executable 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 ];
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user