13 rustPlatform.buildRustPackage rec {
14 pname = "cargo-duplicates";
17 src = fetchFromGitHub {
19 repo = "cargo-duplicates";
21 hash = "sha256-VGxBmzMtev+lXGhV9pMefpgX6nPlzMaPbXq5LMdIvrE=";
24 cargoHash = "sha256-xkPvbC/ot4U3gca57pEEze0jaQhUAZV1MEX0E6E1BmE=";
36 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
37 darwin.apple_sdk.frameworks.Security
41 description = "Cargo subcommand for displaying when different versions of a same dependency are pulled in";
42 mainProgram = "cargo-duplicates";
43 homepage = "https://github.com/Keruspe/cargo-duplicates";
44 license = licenses.mit;
45 maintainers = with maintainers; [ figsoda matthiasbeyer ];