libhighscore: init at 0-unstable-2025-12-06

This commit is contained in:
Chuang Zhu
2026-01-02 23:26:09 +08:00
committed by aleksana
parent 6e56af8a05
commit 6f56a92a85
+54
View File
@@ -0,0 +1,54 @@
{
lib,
stdenv,
fetchFromGitLab,
meson,
ninja,
pkg-config,
glib,
vala,
gobject-introspection,
unstableGitUpdater,
}:
stdenv.mkDerivation {
pname = "libhighscore";
version = "0-unstable-2025-12-06";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "alicem";
repo = "libhighscore";
rev = "6920d96b440ccfc070fc87c39c51beab8ac053bd";
hash = "sha256-JXfPLPHA3HwXRG6sT/5TSMbtU+BqBh/+ZVrzJxW0xLg=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
glib # For glib-mkenums
gobject-introspection # For g-ir-scanner
vala # For vapigen
];
# In highscore-1.pc
propagatedBuildInputs = [
glib
];
passthru.updateScript = unstableGitUpdater {
hardcodeZeroVersion = true;
};
meta = {
description = "Interface for porting emulators to Highscore";
homepage = "https://gitlab.gnome.org/alicem/libhighscore";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [
chuangzhu
aleksana
];
platforms = lib.platforms.linux;
};
}