2024-12-10 20:27:17 +01:00
|
|
|
{
|
|
|
|
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";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2024-05-03 13:51:19 +00:00
|
|
|
hash = "sha256-nWd6h39jU1eZWPFMxhxActsmrs9k0TDMlealuzTa+o0=";
|
2024-03-17 20:10:23 +01:00
|
|
|
};
|
|
|
|
|
2025-01-23 08:45:31 +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";
|
|
|
|
};
|
|
|
|
}
|