fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 rustPlatform,
4 fetchCrate,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "cargo-rdme";
9 version = "1.5.0";
10
11 src = fetchCrate {
12 inherit pname version;
13 hash = "sha256-TmV6Fc5vlc4fm9w4+iuxmnonwsEbqoJ3jvpIyQOuxjg=";
14 };
15
16 cargoHash = "sha256-EjIvKf1XgHubvyWPOAjysNH4nD0xqOWYg1FeiPSYh4c=";
17
18 meta = {
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 lib.licenses; [ mpl20 ];
24 maintainers = with lib.maintainers; [
25 GoldsteinE
26 chrjabs
27 ];
28 };
29}