nixpkgs/pkgs/applications/misc/zola/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, cmake, pkg-config, openssl, oniguruma, CoreServices, installShellFiles }:
2017-12-29 09:13:47 +03:00
rustPlatform.buildRustPackage rec {
2019-03-26 00:26:07 +03:00
pname = "zola";
version = "unstable-2021-07-14";
2017-12-29 09:13:47 +03:00
src = fetchFromGitHub {
2018-11-18 01:53:15 +03:00
owner = "getzola";
2019-03-26 00:26:07 +03:00
repo = pname;
# unstable because the latest release fails to build
rev = "312ffcb04c06c5f157b9fd2b944b858703238592";
sha256 = "0i5zqs1gwxhvsynb540c3azfi4357igr4i5p0bi3h7ras2asas8w";
2017-12-29 09:13:47 +03:00
};
cargoSha256 = "0g5z0s837cfwzral2zz0avp0xywyaa3l1adxg520qrnga7z0kbh8";
nativeBuildInputs = [ cmake pkg-config installShellFiles];
2020-09-05 07:20:00 +03:00
buildInputs = [ openssl oniguruma ]
2021-01-15 08:42:41 +03:00
++ lib.optional stdenv.isDarwin CoreServices;
2017-12-29 09:13:47 +03:00
2020-09-05 07:20:00 +03:00
RUSTONIG_SYSTEM_LIBONIG = true;
2017-12-29 09:13:47 +03:00
postInstall = ''
installShellCompletion --cmd zola \
--fish completions/zola.fish \
--zsh completions/_zola \
--bash completions/zola.bash
2017-12-29 09:13:47 +03:00
'';
meta = with lib; {
2018-11-18 01:53:15 +03:00
description = "A fast static site generator with everything built-in";
2020-02-18 09:22:38 +03:00
homepage = "https://www.getzola.org/";
2017-12-29 09:13:47 +03:00
license = licenses.mit;
2021-07-18 20:10:33 +03:00
maintainers = with maintainers; [ dandellion dywedir _0x4A6F ];
# set because of unstable-* version
mainProgram = "zola";
2017-12-29 09:13:47 +03:00
};
}