nixpkgs/pkgs/tools/text/mdbook/default.nix
Vincent Ambo e19185e298 mdbook: 0.1.8 -> 0.3.1
Last update was over a year ago and the project has progressed a lot
in between. This moves the derivation to the latest tagged version.
2019-08-04 01:08:50 +01:00

26 lines
741 B
Nix

{ stdenv, fetchFromGitHub, rustPlatform, CoreServices, darwin }:
rustPlatform.buildRustPackage rec {
name = "mdbook-${version}";
version = "0.3.1";
src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
sha256 = "0py69267jbs6b7zw191hcs011cm1v58jz8mglqx3ajkffdfl3ghw";
};
cargoSha256 = "0qwhc42a86jpvjcaysmfcw8kmwa150lmz01flmlg74g6qnimff5m";
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
meta = with stdenv.lib; {
description = "Create books from MarkDown";
homepage = https://github.com/rust-lang-nursery/mdbook;
license = [ licenses.asl20 licenses.mit ];
maintainers = [ maintainers.havvy ];
platforms = platforms.all;
};
}