lol

Merge pull request #133136 from marsam/update-zola

zola: 2021-07-14 -> 0.14.0

authored by

Sandro and committed by
GitHub
dc650b1b 5b685ed7

+5 -8
+5 -5
pkgs/applications/misc/zola/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "zola"; 5 - version = "unstable-2021-07-14"; 5 + version = "0.14.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "getzola"; 9 9 repo = pname; 10 - # unstable because the latest release fails to build 11 - rev = "312ffcb04c06c5f157b9fd2b944b858703238592"; 12 - sha256 = "0i5zqs1gwxhvsynb540c3azfi4357igr4i5p0bi3h7ras2asas8w"; 10 + rev = "v${version}"; 11 + sha256 = "1mvin6pfqhsfhaifivbdi6qcn0dsa98w83m1n51q807gh4l1k2yj"; 13 12 }; 14 13 15 - cargoSha256 = "0g5z0s837cfwzral2zz0avp0xywyaa3l1adxg520qrnga7z0kbh8"; 14 + cargoSha256 = "02bk399c7x15a5rkaz7ik65yihkfbjn1q46gx7l8hycqq7xb0xmg"; 16 15 17 16 nativeBuildInputs = [ cmake pkg-config installShellFiles]; 18 17 buildInputs = [ openssl oniguruma ] ··· 30 29 meta = with lib; { 31 30 description = "A fast static site generator with everything built-in"; 32 31 homepage = "https://www.getzola.org/"; 32 + changelog = "https://github.com/getzola/zola/raw/v${version}/CHANGELOG.md"; 33 33 license = licenses.mit; 34 34 maintainers = with maintainers; [ dandellion dywedir _0x4A6F ]; 35 35 # set because of unstable-* version
-3
pkgs/top-level/all-packages.nix
··· 28702 28702 28703 28703 zola = callPackage ../applications/misc/zola { 28704 28704 inherit (darwin.apple_sdk.frameworks) CoreServices; 28705 - # Version 0.13.0 has the lexical_core 0.7.4 dependency that doesn't build 28706 - # with rust 1.53. This should be fixed in the next version. 28707 - rustPlatform = rustPackages_1_45.rustPlatform; 28708 28705 }; 28709 28706 28710 28707 zombietrackergps = libsForQt5.callPackage ../applications/gis/zombietrackergps { };