base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / text / mdbook-pdf / default.nix
blobab889398ceffc3708a3a1bd5b7f15c56177d9b71
1 { lib
2 , stdenv
3 , fetchCrate
4 , rustPlatform
5 , pkg-config
6 , openssl
7 , CoreServices
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "mdbook-pdf";
12   version = "0.1.10";
14   src = fetchCrate {
15     inherit pname version;
16     hash = "sha256-zRoO84ij7zF1I8ijXS/oApMKfS3e04+5/CgahAemqCA=";
17   };
19   cargoHash = "sha256-eay3tl4edeM05D+0iIu8Zw4L1N2Bk1csLo0AwNdyCdA=";
21   nativeBuildInputs = [
22     pkg-config
23   ];
25   buildInputs = [
26     openssl
27   ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
28     CoreServices
29   ];
31   # Stop downloading from the Internet to
32   # generate the Chrome Devtools Protocol
33   env.DOCS_RS = true;
35   # Stop formatting with rustfmt
36   env.DO_NOT_FORMAT = true;
38   # No test.
39   doCheck = false;
41   meta = with lib; {
42     description = "Backend for mdBook written in Rust for generating PDF";
43     mainProgram = "mdbook-pdf";
44     homepage = "https://github.com/HollowMan6/mdbook-pdf";
45     changelog = "https://github.com/HollowMan6/mdbook-pdf/releases/tag/v${version}";
46     license = licenses.gpl3Plus;
47     maintainers = with maintainers; [ hollowman6 matthiasbeyer ];
48   };