vuze: drop (#358309)
[NixPkgs.git] / pkgs / tools / text / mdbook-footnote / default.nix
blob791cb07d02bec131f27f438400185d4a5d0175b6
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , CoreServices
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "mdbook-footnote";
9   version = "0.1.1";
11   src = fetchFromGitHub {
12     owner = "daviddrysdale";
13     repo = "mdbook-footnote";
14     rev = "v${version}";
15     hash = "sha256-WUMgm1hwsU9BeheLfb8Di0AfvVQ6j92kXxH2SyG3ses=";
16   };
18   cargoHash = "sha256-Ig+uVCO5oHIkkvFsKiBiUFzjUgH/Pydn4MVJHb2wKGc=";
20   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
22   meta = with lib; {
23     description = "Preprocessor for mdbook to support the inclusion of automatically numbered footnotes";
24     mainProgram = "mdbook-footnote";
25     homepage = "https://github.com/daviddrysdale/mdbook-footnote";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ brianmcgillion matthiasbeyer ];
28   };