stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / tools / text / mdbook-pdf / default.nix
blob03a3823e3cb7b7664291a3a9f5bd40ebf89f4b50
2   lib,
3   stdenv,
4   fetchCrate,
5   rustPlatform,
6   pkg-config,
7   openssl,
8   CoreServices,
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "mdbook-pdf";
13   version = "0.1.10";
15   src = fetchCrate {
16     inherit pname version;
17     hash = "sha256-zRoO84ij7zF1I8ijXS/oApMKfS3e04+5/CgahAemqCA=";
18   };
20   cargoHash = "sha256-eay3tl4edeM05D+0iIu8Zw4L1N2Bk1csLo0AwNdyCdA=";
22   nativeBuildInputs = [
23     pkg-config
24   ];
26   buildInputs =
27     [
28       openssl
29     ]
30     ++ lib.optionals stdenv.hostPlatform.isDarwin [
31       CoreServices
32     ];
34   # Stop downloading from the Internet to
35   # generate the Chrome Devtools Protocol
36   env.DOCS_RS = true;
38   # Stop formatting with rustfmt
39   env.DO_NOT_FORMAT = true;
41   # No test.
42   doCheck = false;
44   meta = with lib; {
45     description = "Backend for mdBook written in Rust for generating PDF";
46     mainProgram = "mdbook-pdf";
47     homepage = "https://github.com/HollowMan6/mdbook-pdf";
48     changelog = "https://github.com/HollowMan6/mdbook-pdf/releases/tag/v${version}";
49     license = licenses.gpl3Plus;
50     maintainers = with maintainers; [
51       hollowman6
52       matthiasbeyer
53     ];
54   };