nixpkgs/pkgs/by-name/zo/zola/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.3 KiB
Nix
Raw Normal View History

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