sledtool: init at 0.1.3 (#398402)

This commit is contained in:
Michael Daniels
2026-03-08 01:19:02 +00:00
committed by GitHub
+31
View File
@@ -0,0 +1,31 @@
{
fetchFromGitHub,
rustPlatform,
lib,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "sledtool";
version = "0.1.3";
cargoHash = "sha256-BrI4Xq3Kuj06aPKSXNhCKCWZurO1npIsbBil3MrbQfk=";
src = fetchFromGitHub {
owner = "vi";
repo = "sledtool";
tag = "v${finalAttrs.version}";
hash = "sha256-8D1zrRecU3s4EWKRAnnQ8Ga/kvKR0TCG6agoBCw+bEI=";
};
passthru.updateScript = nix-update-script { };
meta = {
mainProgram = "sledtool";
description = "CLI tool to work with Sled key-value databases";
homepage = "https://github.com/vi/sledtool";
changelog = "https://github.com/vi/sledtool/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ cilki ];
};
})