1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-13 16:03:25 +00:00
This commit is contained in:
Rae 5e 2025-03-09 14:53:56 -04:00
parent 58fc0df360
commit f4ce86af2a
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
3 changed files with 28 additions and 1 deletions

View file

@ -20,7 +20,7 @@
r5e.containers = {
pihole = {
enable = true;
dhcp.enable = true;
dhcp.enable = false;
listenPortHTTP = 8080;
listenPortHTTPS = 8443;
openFirewall = true;

View file

@ -1,5 +1,6 @@
{ ... }: final: prev: with final; {
chibicc-uxn = callPackage ./chibicc-uxn {};
playit-agent = callPackage ./playit-agent {};
wxwabbitemu = callPackage ./wxwabbitemu {};
ynodesktop = callPackage ./ynodesktop {};
}

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, cmake, wxGTK32 }: stdenv.mkDerivation {
pname = "wxwabbitemu";
version = "0.1.0";
src = fetchFromGitHub {
owner = "alberthdev";
repo = "wxwabbitemu";
rev = "7b9ef9d3109355c053d83ae6be67cd75dd6ca8dc";
sha256 = "035qlnk385qkkvwfhfd76cf70h5z2yhw0dzbay3pydx1qskn40dj";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
wxGTK32
];
meta = with lib; {
description = "Cross-platform TI-8x emulator based on Wabbitemu";
homepage = "https://github.com/alberthdev/wxwabbitemu";
license = licenses.gpl2;
platform = platforms.linux;
};
}