From 0aa54ed1134b5dcf51949b37ca45ddbbc230c970 Mon Sep 17 00:00:00 2001 From: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> Date: Sat, 13 Jun 2026 10:07:45 +0530 Subject: [PATCH] allmytoes: init at 0.5.1 Signed-off-by: Luminar Leaf <80571430+LuminarLeaf@users.noreply.github.com> --- pkgs/by-name/al/allmytoes/package.nix | 31 +++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/al/allmytoes/package.nix diff --git a/pkgs/by-name/al/allmytoes/package.nix b/pkgs/by-name/al/allmytoes/package.nix new file mode 100644 index 000000000000..afe3ce8bfc12 --- /dev/null +++ b/pkgs/by-name/al/allmytoes/package.nix @@ -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 ]; + }; +})