bign-handheld-thumbnailer: init at 1.1.1

This commit is contained in:
seth 2024-11-22 19:20:56 -05:00
parent ba1cb7c8e0
commit 30626227b0
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -0,0 +1,50 @@
{
lib,
bign-handheld-thumbnailer,
fetchFromGitHub,
glib,
nix-update-script,
pkg-config,
rustPlatform,
testers,
}:
rustPlatform.buildRustPackage rec {
pname = "bign-handheld-thumbnailer";
version = "1.1.1";
src = fetchFromGitHub {
owner = "MateusRodCosta";
repo = "bign-handheld-thumbnailer";
rev = "refs/tags/v${version}";
hash = "sha256-rRKMIkeTBb16GF8DgQ36Vdx/1I6zuzpuL/jusFJ0OZw=";
};
cargoHash = "sha256-e6KuE6tlBfTfqTW4oyNIchB3/1tsl8CbR0x4ZUTKDVA=";
strictDeps = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib ];
passthru = {
tests.version = testers.testVersion {
package = bign-handheld-thumbnailer;
version = "v${version}";
};
updateScript = nix-update-script { };
};
meta = {
description = "Thumbnailer for Nintendo handheld systems (Nintendo DS and 3DS) roms and files";
homepage = "https://github.com/MateusRodCosta/bign-handheld-thumbnailer";
changelog = "https://github.com/MateusRodCosta/bign-handheld-thumbnailer/releases/tag/v${version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "bign-handheld-thumbnailer";
# This is based on GIO
inherit (glib.meta) platforms;
};
}