summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-sweep/default.nix
blob: a6068a96dc7e4afd287d3b527e0a6bdca2ff0d08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "cargo-sweep";
  version = "0.4.1";

  src = fetchFromGitHub {
    owner = "holmgr";
    repo = pname;
    rev = "v${version}";
    sha256 = "1zp0x0jy5bjqbxawlwvpj6vb3y602mnh19p48rw70kdx6vripbvj";
  };

  cargoSha256 = "1j5i4gp5mspgb8l6a25lqlyr5c16pchbh3g3yn8h1qlxj8g2vgnh";

  meta = with stdenv.lib; {
    description = "A Cargo subcommand for cleaning up unused build files generated by Cargo";
    homepage = https://github.com/holmgr/cargo-sweep;
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ xrelkd ];
  };
}