2018-08-04 23:24:13 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices, cf-private }:
|
2017-12-29 06:13:47 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-25 21:26:07 +00:00
|
|
|
pname = "zola";
|
2019-06-22 14:19:22 +01:00
|
|
|
version = "0.8.0";
|
2017-12-29 06:13:47 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-17 22:53:15 +00:00
|
|
|
owner = "getzola";
|
2019-03-25 21:26:07 +00:00
|
|
|
repo = pname;
|
2017-12-29 06:13:47 +00:00
|
|
|
rev = "v${version}";
|
2019-06-22 14:19:22 +01:00
|
|
|
sha256 = "166kmlkzd1qyw9yq2jqs58z8b3d956jjhw9r15jzw98md949psr5";
|
2017-12-29 06:13:47 +00:00
|
|
|
};
|
|
|
|
|
2019-06-22 14:19:22 +01:00
|
|
|
cargoSha256 = "1brmlg6nqyls1v62z0fg0km150q9m7h71wy67lidcnw76icmqr24";
|
2017-12-29 06:13:47 +00:00
|
|
|
|
2019-03-25 21:26:07 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices cf-private ];
|
2017-12-29 06:13:47 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
2018-11-17 22:53:15 +00:00
|
|
|
install -D -m 444 completions/zola.bash \
|
2017-12-29 06:13:47 +00:00
|
|
|
-t $out/share/bash-completion/completions
|
2018-11-17 22:53:15 +00:00
|
|
|
install -D -m 444 completions/_zola \
|
2017-12-29 06:13:47 +00:00
|
|
|
-t $out/share/zsh/site-functions
|
2018-11-17 22:53:15 +00:00
|
|
|
install -D -m 444 completions/zola.fish \
|
2017-12-29 06:13:47 +00:00
|
|
|
-t $out/share/fish/vendor_completions.d
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-11-17 22:53:15 +00:00
|
|
|
description = "A fast static site generator with everything built-in";
|
|
|
|
homepage = https://www.getzola.org/;
|
2017-12-29 06:13:47 +00:00
|
|
|
license = licenses.mit;
|
2018-07-14 19:32:15 +01:00
|
|
|
maintainers = with maintainers; [ dywedir ];
|
2017-12-29 06:13:47 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|