mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
mdbook-epub: init at unstable-2022-12-25
This commit is contained in:
parent
76f4cd8358
commit
57a9c1f8e9
41
pkgs/tools/text/mdbook-epub/default.nix
Normal file
41
pkgs/tools/text/mdbook-epub/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, bzip2
|
||||
, CoreServices
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "mdbook-epub";
|
||||
version = "unstable-2022-12-25";
|
||||
in rustPlatform.buildRustPackage {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "michael-f-bryan";
|
||||
repo = pname;
|
||||
rev = "2e1e48d0d1a1b4c1b0f866267e6666b41c598225";
|
||||
hash = "sha256-wjn/7dv/Z2OmwvH/XaEeCz/JOvJWlMJ60q5qozzOEWY=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-4oSpQUYJDK0srABZMwJ8x8jv6DOnLShXSnjLjf8c9Ac=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
bzip2
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
CoreServices
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "mdbook backend for generating an e-book in the EPUB format";
|
||||
homepage = "https://michael-f-bryan.github.io/mdbook-epub";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ yuu ];
|
||||
};
|
||||
}
|
@ -9018,6 +9018,10 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
mdbook-epub = callPackage ../tools/text/mdbook-epub {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
mdbook-cmdrun = callPackage ../tools/text/mdbook-cmdrun { };
|
||||
|
||||
mdbook-graphviz = callPackage ../tools/text/mdbook-graphviz {
|
||||
|
Loading…
Reference in New Issue
Block a user