lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

projclean: init at 0.8.0

+37
+37
pkgs/by-name/pr/projclean/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + versionCheckHook, 6 + nix-update-script, 7 + }: 8 + 9 + rustPlatform.buildRustPackage (finalAttrs: { 10 + pname = "projclean"; 11 + version = "0.8.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "sigoden"; 15 + repo = "projclean"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-EScezOsfiirg8YbhteFxuVTodeup8tUzZdcrWveJxWE="; 18 + }; 19 + 20 + cargoHash = "sha256-9atTgWg1iYCeXsRLLMOR87CbpIezD3ozMMOgumRNKAg="; 21 + 22 + nativeInstallCheckInputs = [ versionCheckHook ]; 23 + doInstallCheck = true; 24 + 25 + passthru.updateScript = nix-update-script { }; 26 + 27 + meta = { 28 + description = "Project dependencies & build artifacts cleanup tool"; 29 + homepage = "https://github.com/sigoden/projclean"; 30 + license = with lib.licenses; [ 31 + mit 32 + asl20 33 + ]; 34 + maintainers = with lib.maintainers; [ chillcicada ]; 35 + mainProgram = "projclean"; 36 + }; 37 + })