nix-sweep: init at 0.8.0 (#472014)

This commit is contained in:
Aleksana
2025-12-24 12:16:20 +00:00
committed by GitHub
2 changed files with 56 additions and 0 deletions
+6
View File
@@ -13326,6 +13326,12 @@
githubId = 20658981;
name = "Jarosław Wygoda";
};
jzbor = {
email = "jzbor@posteo.net";
github = "jzbor";
githubId = 48366877;
name = "Julian";
};
jzellner = {
email = "jeffz@eml.cc";
github = "sofuture";
+50
View File
@@ -0,0 +1,50 @@
{
lib,
stdenv,
fetchFromGitHub,
rustPlatform,
installShellFiles,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nix-sweep";
version = "0.8.0";
src = fetchFromGitHub {
owner = "jzbor";
repo = "nix-sweep";
tag = "v${finalAttrs.version}";
hash = "sha256-C83AtqexEzx+8cNZXZyYUtg4gAUyam00IM0eXO8xOgA=";
};
cargoHash = "sha256-etqSdtoiSPMQLuMgBK/nnJM8dDTdmRk+MT++zu/9IjM=";
nativeBuildInputs = [
installShellFiles
];
outputs = [
"out"
"man"
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
mkdir ./manpages
$out/bin/nix-sweep man ./manpages
installManPage ./manpages/*
mkdir ./completions
$out/bin/nix-sweep completions ./completions
installShellCompletion completions/nix-sweep.{bash,fish,zsh}
'';
meta = {
description = "Utility to clean up old Nix profile generations and left-over garbage collection roots";
homepage = "https://github.com/jzbor/nix-sweep";
changelog = "https://github.com/jzbor/nix-sweep/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
mainProgram = "nix-sweep";
maintainers = with lib.maintainers; [
jzbor
];
};
})