This commit is contained in:
Lukas Wurzinger 2025-06-22 00:21:19 +02:00
commit 74d76ee8cc
No known key found for this signature in database
11 changed files with 1277 additions and 0 deletions

38
package.nix Normal file
View file

@ -0,0 +1,38 @@
{
lib,
buildGoModule,
wayland,
libxkbcommon,
libGL,
pkg-config,
xorg,
}:
buildGoModule {
pname = "xenumenu";
version = "unstable";
src = lib.cleanSource ./.;
vendorHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
ldflags = [
"-s"
"-w"
];
buildInputs = [
wayland
libxkbcommon
libGL
pkg-config
xorg.libX11
];
meta = {
description = "";
homepage = "https://forgejo.helveticanonstandard.net/helvetica/xenumenu";
license = lib.licenses.gpl3Only;
mainProgram = "xenumenu";
};
}