2021-10-01 09:20:50 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, oniguruma
|
2024-01-13 08:15:51 +00:00
|
|
|
, darwin
|
2021-10-01 09:20:50 +00:00
|
|
|
, installShellFiles
|
2021-12-19 01:06:50 +00:00
|
|
|
, zola
|
2022-04-27 09:35:20 +00:00
|
|
|
, testers
|
2021-10-01 09:20:50 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "zola";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "0.18.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "getzola";
|
2021-12-06 16:07:01 +00:00
|
|
|
repo = "zola";
|
2021-08-08 23:34:03 +00:00
|
|
|
rev = "v${version}";
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-kNlFmCqWEfU2ktAMxXNKe6dmAV25voHjHYaovBYsOu8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
cargoHash = "sha256-JWYuolHh/qdWF+i6WTgz/uDrkQ6V+SDFhEzGGkUA0E4=";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
installShellFiles
|
|
|
|
];
|
2024-01-13 08:15:51 +00:00
|
|
|
|
2021-10-01 09:20:50 +00:00
|
|
|
buildInputs = [
|
|
|
|
oniguruma
|
2024-01-13 08:15:51 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
CoreServices SystemConfiguration
|
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
RUSTONIG_SYSTEM_LIBONIG = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
postInstall = ''
|
2021-07-14 22:03:04 +00:00
|
|
|
installShellCompletion --cmd zola \
|
2023-03-08 16:32:21 +00:00
|
|
|
--bash <($out/bin/zola completion bash) \
|
|
|
|
--fish <($out/bin/zola completion fish) \
|
|
|
|
--zsh <($out/bin/zola completion zsh)
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
passthru.tests.version = testers.testVersion { package = zola; };
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A fast static site generator with everything built-in";
|
|
|
|
homepage = "https://www.getzola.org/";
|
2021-08-08 23:34:03 +00:00
|
|
|
changelog = "https://github.com/getzola/zola/raw/v${version}/CHANGELOG.md";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
2021-07-24 12:14:16 +00:00
|
|
|
maintainers = with maintainers; [ dandellion dywedir _0x4A6F ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|