allmytoes: init at 0.5.1 (#531241)

This commit is contained in:
Sandro
2026-06-15 12:47:32 +00:00
committed by GitHub
+31
View File
@@ -0,0 +1,31 @@
{
lib,
nix-update-script,
rustPlatform,
fetchFromGitLab,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "allmytoes";
version = "0.5.1";
src = fetchFromGitLab {
owner = "allmytoes";
repo = "allmytoes";
tag = finalAttrs.version;
hash = "sha256-BYKcDJN/uKESj0pnb2xvrx1lO6rOGdi+PVT6ywZqjbQ=";
};
cargoHash = "sha256-Pzbruv1E4mMohw//lf1JBoK+4BHDJVr4/9xXE4FrWbA==";
passthru.updateScript = nix-update-script { };
__structuredAttrs = true;
meta = {
description = "Provides thumbnails by using the freedesktop-specified thumbnail database (aka XDG standard)";
homepage = "https://gitlab.com/allmytoes/allmytoes";
mainProgram = "allmytoes";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ luminarleaf ];
};
})