Merge pull request #140895 from figsoda/rusty-man

authored by

Sandro and committed by
GitHub
a8bcfdf5 2997d3d1

+24
+23
pkgs/development/tools/rust/rusty-man/default.nix
··· 1 + { lib, rustPlatform, fetchFromSourcehut }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "rusty-man"; 5 + version = "0.4.3"; 6 + 7 + src = fetchFromSourcehut { 8 + owner = "~ireas"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1yp1clmf4hpvqbvn055hiq52584kbrz5b3cjzw8bgkw51nwxr2yx"; 12 + }; 13 + 14 + cargoSha256 = "sha256-mIM97YraTiDAowqlB4kAE4PdtWHgvw0UI6Nqoe1EBns="; 15 + 16 + meta = with lib; { 17 + description = "A command-line viewer for documentation generated by rustdoc"; 18 + homepage = "https://git.sr.ht/~ireas/rusty-man"; 19 + changelog = "https://git.sr.ht/~ireas/rusty-man/tree/v${version}/item/CHANGELOG.md"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ figsoda ]; 22 + }; 23 + }
+1
pkgs/top-level/all-packages.nix
··· 12666 12666 rustup-toolchain-install-master = callPackage ../development/tools/rust/rustup-toolchain-install-master { 12667 12667 inherit (darwin.apple_sdk.frameworks) Security; 12668 12668 }; 12669 + rusty-man = callPackage ../development/tools/rust/rusty-man { }; 12669 12670 12670 12671 sagittarius-scheme = callPackage ../development/compilers/sagittarius-scheme {}; 12671 12672