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

Commits on Mar 27, 2018

  1. mdbook: 0.1.3 -> 0.1.5

    dywedir committed Mar 27, 2018
    Copy the full SHA
    c9de413 View commit details

Commits on Apr 1, 2018

  1. Merge pull request #37914 from dywedir/mdbook

    mdbook: 0.1.3 -> 0.1.5
    matthewbauer authored Apr 1, 2018
    Copy the full SHA
    6708e3e View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/tools/text/mdbook/default.nix
7 changes: 3 additions & 4 deletions pkgs/tools/text/mdbook/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,16 @@

rustPlatform.buildRustPackage rec {
name = "mdbook-${version}";
version = "0.1.3";
version = "0.1.5";

src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
sha256 = "0m0vprjpd02z4nr3vd4qha2jka7l36k4liw8jcbf4xs09c584sjv";
sha256 = "0k86zjrqb5wdxvmzz9cxl9c0mpjnr46fh5r5sbs5q9fk2h4lp4ip";
};

cargoSha256 = "19hpr78p9rzgirq6fjw8v11d5mgcglms6vbqgjyvg49xmkklsqzr";
depsSha256 = "0q68qyl2h6i0qsz82z840myxlnjay8p1w5z7hfyr8fqp7wgwa9cx";
cargoSha256 = "0gj1x996lvn9j87dfmng2fn3fgz8rgvrw3akcz641psj4hlfgm5w";

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