Merge pull request #332655 from HollowMan6/master

mdbook-pdf: 0.1.8 -> 0.1.10
This commit is contained in:
Robert Schütz 2024-08-18 12:43:42 -07:00 committed by GitHub
commit d7cdbdd3b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,25 +3,23 @@
, fetchCrate
, rustPlatform
, pkg-config
, rustfmt
, openssl
, CoreServices
}:
rustPlatform.buildRustPackage rec {
pname = "mdbook-pdf";
version = "0.1.8";
version = "0.1.10";
src = fetchCrate {
inherit pname version;
hash = "sha256-UPSh0/8HFaLvnU95Gyd+uQaRvWeXlp+HViVUKX0I1jI=";
hash = "sha256-zRoO84ij7zF1I8ijXS/oApMKfS3e04+5/CgahAemqCA=";
};
cargoHash = "sha256-WYG2EkfEqjOOelxwivk5srtTNLxEPGX1ztwntvgft1I=";
cargoHash = "sha256-eay3tl4edeM05D+0iIu8Zw4L1N2Bk1csLo0AwNdyCdA=";
nativeBuildInputs = [
pkg-config
rustfmt
];
buildInputs = [
@ -32,12 +30,10 @@ rustPlatform.buildRustPackage rec {
# Stop downloading from the Internet to
# generate the Chrome Devtools Protocol
DOCS_RS=true;
env.DOCS_RS = true;
# # Stop formating with rustfmt, pending version update for
# # https://github.com/mdrokz/auto_generate_cdp/pull/8
# # to remove rustfmt dependency
# DO_NOT_FORMAT=true;
# Stop formatting with rustfmt
env.DO_NOT_FORMAT = true;
# No test.
doCheck = false;