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:
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
|
||||
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
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{ ... }: final: prev: with final; {
|
||||
chibicc-uxn = callPackage ./chibicc-uxn {};
|
||||
ynodesktop = callPackage ./ynodesktop {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue