biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-run-bin / default.nix
bloba12ebb8caf9b7bafe215e29b3dc47076f61a0f58
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-run-bin";
8   version = "1.7.2";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-VhDCOTabj/HHc6bYdAUOErvxXOzyY3+e7GccZcb1cSQ=";
13   };
15   cargoHash = "sha256-riWWxv3FsBrgzVUWGtKvV4WjhgsXImLpiS9EJ40kCn8=";
17   # multiple impurities in tests
18   doCheck = false;
20   meta = with lib; {
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 ];
27   };