ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / cargo-run-bin / package.nix
blobfa4d2a5a33ed78b598f6b36b6f090d0e203aa9d4
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-run-bin";
8   version = "1.7.4";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-79DJ6j2sai1dTdcXf0qD97TCNZuGRSUobLGahoApMss=";
13   };
15   cargoHash = "sha256-6ub82+1DJqPjxNuEuk1YwdL6auCtWZK3L09xQlgific=";
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   };