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 ]; + }; +})