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: c173f673edff
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cf3130641a0d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 20, 2021

  1. mdbook: 0.4.5 -> 0.4.6

    r-ryantm committed Jan 20, 2021
    Copy the full SHA
    2b40e55 View commit details

Commits on Jan 22, 2021

  1. Merge pull request #110097 from r-ryantm/auto-update/mdbook

    mdbook: 0.4.5 -> 0.4.6
    Ma27 authored Jan 22, 2021
    Copy the full SHA
    cf31306 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/text/mdbook/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/text/mdbook/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "mdbook";
version = "0.4.5";
version = "0.4.6";

src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
sha256 = "11v2x0q8pn7hbmznqy872ksr7szyiki9cfhapymjhkf5nwfvcdbb";
sha256 = "sha256-cS2fME3X8bFmEz6czoL+2ZFbflJP58+lIeC5SVleCNg=";
};

cargoSha256 = "1psgqj04hzv7p18h4phsahxg4rj9yz38b8mh111k6l8m4r83kd75";
cargoSha256 = "sha256-iuJyprLp6HofcdH0NgNK2Vl+1FtdAvZPcltPUb5B2XU=";

buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];