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

36 lines
1.1 KiB
Nix
Raw Normal View History

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 {
2018-11-17 22:53:15 +00:00
name = "zola-${version}";
version = "0.5.0";
2017-12-29 06:13:47 +00:00
src = fetchFromGitHub {
2018-11-17 22:53:15 +00:00
owner = "getzola";
repo = "zola";
2017-12-29 06:13:47 +00:00
rev = "v${version}";
2018-11-17 22:53:15 +00:00
sha256 = "0as8nrzw9zz10w4xxiibgz8ylghc879b2pwaxnw8sjbji2d9qv63";
2017-12-29 06:13:47 +00:00
};
2018-11-17 22:53:15 +00:00
cargoSha256 = "0a14hq8d3xjr6yfg5qn5r7npqivm816f1p53bbm826igvpc9hsxa";
2017-12-29 06:13:47 +00:00
2018-08-04 23:24:13 +01:00
nativeBuildInputs = [ cmake pkgconfig openssl ];
2017-12-29 06:13:47 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices cf-private ];
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;
};
}