biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-msrv / default.nix
blob1492de85daa0519778892873ff0c3eaf55499d24
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , rustup
6 , openssl
7 , stdenv
8 , libiconv
9 , Security
10 , makeWrapper
11 , gitUpdater
14 rustPlatform.buildRustPackage rec {
15   pname = "cargo-msrv";
16   version = "0.15.1";
18   src = fetchFromGitHub {
19     owner = "foresterre";
20     repo = pname;
21     rev = "v${version}";
22     sha256 = "sha256-rmWPkxxrpVamYHII0xkZq62ubL3/jrcqXUvFH9VuNtg=";
23   };
25   cargoSha256 = "sha256-/Bspy94uIP/e4uJY8qo+UPK1tnPjglxiMWeYWx2qoHk=";
27   passthru = {
28     updateScript = gitUpdater {
29       rev-prefix = "v";
30       ignoredVersions = ".(rc|beta).*";
31     };
32   };
34   # Integration tests fail
35   doCheck = false;
37   buildInputs = if stdenv.isDarwin
38     then [ libiconv Security ]
39     else [ openssl ];
41   nativeBuildInputs = [ pkg-config makeWrapper ];
43   # Depends at run-time on having rustup in PATH
44   postInstall = ''
45     wrapProgram $out/bin/cargo-msrv --prefix PATH : ${lib.makeBinPath [ rustup ]};
46   '';
48   meta = with lib; {
49     description = "Cargo subcommand \"msrv\": assists with finding your minimum supported Rust version (MSRV)";
50     mainProgram = "cargo-msrv";
51     homepage = "https://github.com/foresterre/cargo-msrv";
52     license = with licenses; [ asl20 /* or */ mit ];
53     maintainers = with maintainers; [ otavio matthiasbeyer ];
54   };