Add guix manifest

This commit is contained in:
TakeV 2023-02-23 12:53:21 -08:00
parent 63cff6654f
commit a5644cff6d
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
2 changed files with 65 additions and 0 deletions

60
.gitignore vendored Normal file
View File

@ -0,0 +1,60 @@
meritous
# Created by https://www.toptal.com/developers/gitignore/api/c
# Edit at https://www.toptal.com/developers/gitignore?templates=c
### C ###
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
# End of https://www.toptal.com/developers/gitignore/api/c

5
manifest.scm Normal file
View File

@ -0,0 +1,5 @@
;; What follows is a "manifest" equivalent to the command line you gave.
;; You can store it in a file that you may then pass to any 'guix' command
;; that accepts a '--manifest' (or '-m') option.
(specifications->manifest (list "sdl" "make" "sdl-image" "gcc-toolchain" "coreutils" "sdl-mixer"))