nixpkgs/pkgs/tools/misc/mandown/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
544 B
Nix
Raw Normal View History

2022-01-27 01:19:43 +01:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "mandown";
version = "0.1.3";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-8a4sImsjw+lzeVK4V74VpIKDcAhMR1bOmJYVWzfWEfc=";
};
cargoHash = "sha256-Wf1+dxwgPZ4CHpas+3P6n6kKDIISbnfI01+XksjxQlQ=";
meta = with lib; {
description = "Markdown to groff (man page) converter";
homepage = "https://gitlab.com/kornelski/mandown";
license = with licenses; [ asl20 /* or */ mit ];
2022-06-26 05:53:59 +02:00
maintainers = with maintainers; [ ];
2022-01-27 01:19:43 +01:00
};
}