init
This commit is contained in:
commit
97ddcea8f3
11 changed files with 1283 additions and 0 deletions
44
package.nix
Normal file
44
package.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
wayland,
|
||||
libxkbcommon,
|
||||
libGL,
|
||||
pkg-config,
|
||||
xorg,
|
||||
}:
|
||||
|
||||
buildGoModule {
|
||||
pname = "xenumenu";
|
||||
version = "unstable";
|
||||
|
||||
src = lib.cleanSource ./.;
|
||||
|
||||
vendorHash = "sha256-+Giw245jZzEIqmZdJjGOb348xmzuH0Y+6lhBE+Wi5B8=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
tags = [
|
||||
"wayland"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
libxkbcommon
|
||||
libGL
|
||||
xorg.libX11
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Simple GUI program launcher";
|
||||
license = lib.licenses.gpl3Only;
|
||||
mainProgram = "xenumenu";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue