ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / cargo-rdme / package.nix
blob19c36419771650144aed84dadf69b75e69d87e81
1 { lib, rustPlatform, fetchCrate, stdenv, Security }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-rdme";
5   version = "1.4.8";
7   src = fetchCrate {
8     inherit pname version;
9     hash = "sha256-lVu9w8l3+SeqiMoQ8Bjoslf7tWz49jrrE4g/pDU1axI=";
10   };
12   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
13     Security
14   ];
16   cargoHash = "sha256-UqPvvqX+QHFiRil2XadiHyO1EMA51IAUGk6cNH3um54=";
18   meta = with lib; {
19     description = "Cargo command to create the README.md from your crate's documentation";
20     mainProgram = "cargo-rdme";
21     homepage = "https://github.com/orium/cargo-rdme";
22     changelog = "https://github.com/orium/cargo-rdme/blob/v${version}/release-notes.md";
23     license = with licenses; [ mpl20 ];
24     maintainers = with maintainers; [ GoldsteinE ];
25   };