mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-13 16:03:25 +00:00
~
This commit is contained in:
parent
58fc0df360
commit
f4ce86af2a
3 changed files with 28 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
r5e.containers = {
|
||||
pihole = {
|
||||
enable = true;
|
||||
dhcp.enable = true;
|
||||
dhcp.enable = false;
|
||||
listenPortHTTP = 8080;
|
||||
listenPortHTTPS = 8443;
|
||||
openFirewall = true;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ ... }: final: prev: with final; {
|
||||
chibicc-uxn = callPackage ./chibicc-uxn {};
|
||||
playit-agent = callPackage ./playit-agent {};
|
||||
wxwabbitemu = callPackage ./wxwabbitemu {};
|
||||
ynodesktop = callPackage ./ynodesktop {};
|
||||
}
|
||||
|
|
26
nixos/pkgs/wxwabbitemu/default.nix
Normal file
26
nixos/pkgs/wxwabbitemu/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue