32 lines
958 B
Nix
32 lines
958 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, CoreServices, Security, libiconv, SystemConfiguration }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-udeps";
|
|
version = "0.1.23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "est31";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-SDB2Xk2bEheXT0Lc1lrTkOyJAcAEsmUPU5R8Hy1SAUE=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-gCGOXEjhT9bx3FYvtu3AoIOmgsU2WO1rmi/cKvD9WMY=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
# TODO figure out how to use provided curl instead of compiling curl from curl-sys
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ CoreServices Security libiconv SystemConfiguration ];
|
|
|
|
# Requires network access
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Find unused dependencies in Cargo.toml";
|
|
homepage = "https://github.com/est31/cargo-udeps";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ b4dm4n ];
|
|
};
|
|
}
|