Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1016 B
Nix
52 lines
1016 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libgit2,
|
|
openssl,
|
|
zlib,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ffizer";
|
|
version = "2.13.5";
|
|
|
|
buildFeatures = [ "cli" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ffizer";
|
|
repo = "ffizer";
|
|
rev = version;
|
|
hash = "sha256-kYsHhNW9UkttKVNEY9+Z9EZWDNIuhCWTmRJytaZVgKc=";
|
|
};
|
|
|
|
cargoHash = "sha256-zsJ5RjqxzCwRJQvWi65NwZ/w3lIvZvkE80EdmNeJUdg=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libgit2
|
|
openssl
|
|
zlib
|
|
];
|
|
|
|
env.OPENSSL_NO_VENDOR = true;
|
|
|
|
checkFlags = [
|
|
# requires internet access
|
|
"--skip=run_test_samples_tests_data_template_2"
|
|
];
|
|
|
|
meta = {
|
|
description = "Files and folders initializer / generator based on templates";
|
|
homepage = "https://github.com/ffizer/ffizer";
|
|
changelog = "https://github.com/ffizer/ffizer/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.cc0;
|
|
maintainers = with lib.maintainers; [ XBagon ];
|
|
mainProgram = "ffizer";
|
|
};
|
|
}
|