2022-01-27 00:19:43 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "mandown";
|
2024-07-27 06:49:29 +00:00
|
|
|
version = "0.1.4";
|
2022-01-27 00:19:43 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-8SHZR8frDHLGj2WYlnFGBWY3B6xv4jByET7CODt2TGw=";
|
2022-01-27 00:19:43 +00:00
|
|
|
};
|
|
|
|
|
2024-07-27 06:49:29 +00:00
|
|
|
cargoHash = "sha256-/IvPvJo5zwvLY+P5+hsdbR56/pfopfwncEz9UGUS1Oc=";
|
2022-01-27 00:19:43 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Markdown to groff (man page) converter";
|
|
|
|
homepage = "https://gitlab.com/kornelski/mandown";
|
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2024-07-31 10:19:44 +00:00
|
|
|
maintainers = [ ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "mandown";
|
2022-01-27 00:19:43 +00:00
|
|
|
};
|
|
|
|
}
|