Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4eee2a079f61
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 260b2af29281
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 26, 2020

  1. zola: 0.10.1 -> 0.11.0

    Br1ght0ne committed May 26, 2020
    Copy the full SHA
    308185f View commit details

Commits on May 27, 2020

  1. Merge pull request #88987 from filalex77/zola-0.11.0

    zola: 0.10.1 -> 0.11.0
    marsam authored May 27, 2020
    Copy the full SHA
    260b2af View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/zola/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/zola/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "zola";
version = "0.10.1";
version = "0.11.0";

src = fetchFromGitHub {
owner = "getzola";
repo = pname;
rev = "v${version}";
sha256 = "07zg4ia983rgvgvmw4xbi347lr4rxlf1xv8rw72cflc74kyia67n";
sha256 = "137ak9gzcn3689fmcb90wa4szw43rh2m51mf26l77a5gksn5y6cn";
};

cargoSha256 = "13lnl01h8k8xv2ls1kjskfnyjmmk8iyk2mvbk01p2wmhp5m876md";
cargoSha256 = "0v40bcqh48dlhdc0kz7wm3q9r3i1m6j9s74bfiv237dqx5dymmsg";

nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ openssl ]