python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / kondo / default.nix
blobda4216cd8b83978d8352777e3da2beea14d0cd1a
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "kondo";
5   version = "0.5";
7   src = fetchFromGitHub {
8     owner = "tbillington";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-TTgsfoJ3TEK7wyRJfBIxvPA53wZbq7KJ4LxjUbrHE4Y=";
12   };
14   cargoSha256 = "sha256-s5e997I7YiDKF6rOB0XwcxbnHR8AifYPX9ctvdz8VTw=";
16   meta = with lib; {
17     description = "Save disk space by cleaning unneeded files from software projects";
18     homepage = "https://github.com/tbillington/kondo";
19     license = licenses.mit;
20     maintainers = with maintainers; [ Br1ght0ne ];
21   };