forked from mirrors/nixpkgs
mandown: init at 0.1.3
This commit is contained in:
parent
ab14cf224f
commit
5bb20f9dc7
20
pkgs/tools/misc/mandown/default.nix
Normal file
20
pkgs/tools/misc/mandown/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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 ];
|
||||
maintainers = with maintainers; [ zowoq ];
|
||||
};
|
||||
}
|
|
@ -3367,6 +3367,8 @@ with pkgs;
|
|||
|
||||
maliit-keyboard = libsForQt5.callPackage ../applications/misc/maliit-keyboard { };
|
||||
|
||||
mandown = callPackage ../tools/misc/mandown { };
|
||||
|
||||
mapcidr = callPackage ../tools/misc/mapcidr { };
|
||||
|
||||
mapproxy = callPackage ../applications/misc/mapproxy { };
|
||||
|
|
Loading…
Reference in a new issue