mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
mandown: adopt and modernize
This commit is contained in:
parent
a1293dacda
commit
3151935795
1 changed files with 9 additions and 7 deletions
|
@ -2,28 +2,30 @@
|
||||||
lib,
|
lib,
|
||||||
rustPlatform,
|
rustPlatform,
|
||||||
fetchCrate,
|
fetchCrate,
|
||||||
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
|
rustPlatform.buildRustPackage (finalAttrs: {
|
||||||
rustPlatform.buildRustPackage rec {
|
|
||||||
pname = "mandown";
|
pname = "mandown";
|
||||||
version = "1.1.0";
|
version = "1.1.0";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchCrate {
|
||||||
inherit pname version;
|
inherit (finalAttrs) pname version;
|
||||||
hash = "sha256-a+1tm9YlBuroTtgCL0nTjASaPiJHif89pRH0CWw7RjM=";
|
hash = "sha256-a+1tm9YlBuroTtgCL0nTjASaPiJHif89pRH0CWw7RjM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
useFetchCargoVendor = true;
|
useFetchCargoVendor = true;
|
||||||
cargoHash = "sha256-ZyjoAvsqUyHgfEsG3+CvJatmBt0AJ2ga6HRJ8Y7her0=";
|
cargoHash = "sha256-ZyjoAvsqUyHgfEsG3+CvJatmBt0AJ2ga6HRJ8Y7her0=";
|
||||||
|
|
||||||
meta = with lib; {
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
description = "Markdown to groff (man page) converter";
|
description = "Markdown to groff (man page) converter";
|
||||||
homepage = "https://gitlab.com/kornelski/mandown";
|
homepage = "https://gitlab.com/kornelski/mandown";
|
||||||
license = with licenses; [
|
license = with lib.licenses; [
|
||||||
asl20 # or
|
asl20 # or
|
||||||
mit
|
mit
|
||||||
];
|
];
|
||||||
maintainers = [ ];
|
maintainers = [ lib.maintainers.awwpotato ];
|
||||||
mainProgram = "mandown";
|
mainProgram = "mandown";
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue