biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / cargo-udeps / default.nix
blobe54021554004ea0b7d06f136996fb884fcc408fe
1 { lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv, SystemConfiguration }:
3 rustPlatform.buildRustPackage rec {
4   pname = "cargo-udeps";
5   version = "0.1.47";
7   src = fetchFromGitHub {
8     owner = "est31";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-1XnCGbOkAmQycwAAEbkoX9xHqBZWYM9v5fp8BdFv7RM=";
12   };
14   cargoHash = "sha256-awEqrvmu9Kgqlz43/yJFM45WfUXZPLix5LKLtwiXV7U=";
16   nativeBuildInputs = [ pkg-config ];
18   # TODO figure out how to use provided curl instead of compiling curl from curl-sys
19   buildInputs = [ openssl ]
20     ++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv SystemConfiguration ];
22   # Requires network access
23   doCheck = false;
25   meta = with lib; {
26     description = "Find unused dependencies in Cargo.toml";
27     homepage = "https://github.com/est31/cargo-udeps";
28     license = licenses.mit;
29     maintainers = with maintainers; [ b4dm4n matthiasbeyer ];
30     mainProgram = "cargo-udeps";
31   };