nixpkgs/pkgs/tools/text/mdbook/default.nix
2018-07-14 20:33:02 +02:00

30 lines
854 B
Nix

{ stdenv, fetchFromGitHub, rustPlatform, CoreServices }:
rustPlatform.buildRustPackage rec {
name = "mdbook-${version}";
version = "0.1.8";
src = fetchFromGitHub {
owner = "rust-lang-nursery";
repo = "mdBook";
rev = "v${version}";
sha256 = "1xmw4v19ff6mvimwk5l437wslzw5npy60zdb8r4319bjf32pw9pn";
};
cargoSha256 = "0kcc0b2644qbalz7dnqwxsjdmw1h57k0rjrvwqh8apj2sgl64gyv";
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;
# Because CoreServices needs to be updated,
# but Apple won't release the source.
broken = stdenv.isDarwin;
};
}