34 lines
810 B
Nix
Raw Permalink Normal View History

{
lib,
rustPlatform,
fetchFromGitHub,
2024-03-17 20:10:23 +01:00
}:
rustPlatform.buildRustPackage rec {
pname = "docuum";
2024-05-03 13:51:19 +00:00
version = "0.25.0";
2024-03-17 20:10:23 +01:00
src = fetchFromGitHub {
owner = "stepchowfun";
repo = "docuum";
rev = "v${version}";
2024-05-03 13:51:19 +00:00
hash = "sha256-nWd6h39jU1eZWPFMxhxActsmrs9k0TDMlealuzTa+o0=";
2024-03-17 20:10:23 +01:00
};
cargoHash = "sha256-ce8mthEWvZ+U2+lU3gGrq1YBzbkiqUGJV5JUsZ+HhBg=";
2024-03-17 20:10:23 +01:00
checkFlags = [
# fails, no idea why
"--skip=format::tests::code_str_display"
];
meta = with lib; {
description = "Least recently used (LRU) eviction of Docker images";
homepage = "https://github.com/stepchowfun/docuum";
changelog = "https://github.com/stepchowfun/docuum/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ mkg20001 ];
mainProgram = "docuum";
};
}