6 rustPlatform.buildRustPackage rec {
7 pname = "cargo-run-bin";
11 inherit pname version;
12 hash = "sha256-VhDCOTabj/HHc6bYdAUOErvxXOzyY3+e7GccZcb1cSQ=";
15 cargoHash = "sha256-riWWxv3FsBrgzVUWGtKvV4WjhgsXImLpiS9EJ40kCn8=";
17 # multiple impurities in tests
21 description = "Build, cache, and run binaries scoped in Cargo.toml rather than installing globally. This acts similarly to npm run and gomodrun, and allows your teams to always be running the same tooling versions";
22 mainProgram = "cargo-bin";
23 homepage = "https://github.com/dustinblackman/cargo-run-bin";
24 changelog = "https://github.com/dustinblackman/cargo-run-bin/blob/v${version}/CHANGELOG.md";
25 license = licenses.mit;
26 maintainers = with maintainers; [ mightyiam matthiasbeyer ];