1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-30 22:53:37 +00:00
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2025-01-26 00:35:22 -05:00
parent 5d5f1b903e
commit 46c50a4c59
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
3 changed files with 5 additions and 3 deletions

View file

@ -34,6 +34,7 @@
uxn # Assembler and emulator for the Uxn stack machine
x16 # Official emulator of CommanderX16 8-bit computer
x16-rom # ROM file for CommanderX16 8-bit computer
ynodesktop # A desktop client for Yume Nikki Online with Discord Rich Presence
# graphics
flameshot # Powerful yet simple to use screenshot software
gimp # GNU Image Manipulation Program

View file

@ -14,10 +14,10 @@
cp chibicc $out/bin
'';
meta = {
meta = with lib; {
description = "A small C compiler... for uxn";
homepage = "https://github.com/lynn/chibicc";
license = lib.licenses.mit;
platforms = lib.platforms.unix;
license = licenses.mit;
platforms = platforms.unix;
};
}

View file

@ -1,3 +1,4 @@
{ ... }: final: prev: with final; {
chibicc-uxn = callPackage ./chibicc-uxn {};
ynodesktop = callPackage ./ynodesktop {};
}