evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / mandown / package.nix
blobae70a319e65f086d2e4182b81ff074573b76b95b
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mandown";
5   version = "0.1.4";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-8SHZR8frDHLGj2WYlnFGBWY3B6xv4jByET7CODt2TGw=";
10   };
12   cargoHash = "sha256-/IvPvJo5zwvLY+P5+hsdbR56/pfopfwncEz9UGUS1Oc=";
14   meta = with lib; {
15     description = "Markdown to groff (man page) converter";
16     homepage = "https://gitlab.com/kornelski/mandown";
17     license = with licenses; [ asl20 /* or */ mit ];
18     maintainers = [ ];
19     mainProgram = "mandown";
20   };