mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-02-07 09:52:50 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
5d5f1b903e
commit
46c50a4c59
3 changed files with 5 additions and 3 deletions
|
@ -34,6 +34,7 @@
|
||||||
uxn # Assembler and emulator for the Uxn stack machine
|
uxn # Assembler and emulator for the Uxn stack machine
|
||||||
x16 # Official emulator of CommanderX16 8-bit computer
|
x16 # Official emulator of CommanderX16 8-bit computer
|
||||||
x16-rom # ROM file for 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
|
# graphics
|
||||||
flameshot # Powerful yet simple to use screenshot software
|
flameshot # Powerful yet simple to use screenshot software
|
||||||
gimp # GNU Image Manipulation Program
|
gimp # GNU Image Manipulation Program
|
||||||
|
|
|
@ -14,10 +14,10 @@
|
||||||
cp chibicc $out/bin
|
cp chibicc $out/bin
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A small C compiler... for uxn";
|
description = "A small C compiler... for uxn";
|
||||||
homepage = "https://github.com/lynn/chibicc";
|
homepage = "https://github.com/lynn/chibicc";
|
||||||
license = lib.licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
{ ... }: final: prev: with final; {
|
{ ... }: final: prev: with final; {
|
||||||
chibicc-uxn = callPackage ./chibicc-uxn {};
|
chibicc-uxn = callPackage ./chibicc-uxn {};
|
||||||
|
ynodesktop = callPackage ./ynodesktop {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue