biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / rusty-man / default.nix
blob34524106c988e790bd1e376f965372331fb124b6
1 { lib, rustPlatform, fetchFromSourcehut }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rusty-man";
5   version = "0.5.0";
7   src = fetchFromSourcehut {
8     owner = "~ireas";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-djprzmogT1OEf0/+twdxzx30YaMNzFjXkZd4IDsH8oo=";
12   };
14   cargoSha256 = "sha256-Wf8D6y3LRYJpQjFFt0w5X+BOllbR3mc4Gzcr1ad3zD0=";
16   meta = with lib; {
17     description = "A command-line viewer for documentation generated by rustdoc";
18     mainProgram = "rusty-man";
19     homepage = "https://git.sr.ht/~ireas/rusty-man";
20     changelog = "https://git.sr.ht/~ireas/rusty-man/tree/v${version}/item/CHANGELOG.md";
21     license = licenses.mit;
22     maintainers = with maintainers; [ figsoda ];
23   };