about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/mdbook-pdf/default.nix
blob: 8c21f50b1d7e2c1e44996efc067267c3d78a2eac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchCrate, rustPlatform, pkg-config, openssl, CoreServices }:

rustPlatform.buildRustPackage rec {
  pname = "mdbook-pdf";
  version = "0.1.2";

  src = fetchCrate {
    inherit pname version;
    sha256 = "1ibmn8x9kyfd058hsyah2ggyzpahzf2w2qjn6rs9qv8mr3bvc0pv";
  };

  cargoSha256 = "0k47a5yqnjjc599vgk39ijy6fm62rr8xarvz37g0c7fx9cljhihz";

  nativeBuildInputs = [ pkg-config ];

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

  # No test.
  doCheck = false;

  meta = with lib; {
    description = "A backend for mdBook written in Rust for generating PDF";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ hollowman6 ];
    homepage = "https://github.com/HollowMan6/mdbook-pdf";
  };
}