Added missing info.rkt file. raco setup gives an error for this package otherwise.

This commit is contained in:
Georges Dupéron 2016-09-17 18:41:13 +02:00
parent 7fa2c44b82
commit df479ea6c4
2 changed files with 15 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*~
\#*
.\#*
.DS_Store
compiled/
/doc/

9
info.rkt Normal file
View File

@ -0,0 +1,9 @@
#lang info
(define collection "rash")
(define deps '("base"
"rackunit-lib"))
(define build-deps '("scribble-lib" "racket-doc"))
(define scribblings '())
(define pkg-desc "A *nix shell written in Racket")
(define version "0.0")
(define pkg-authors '("Cristian Esquivias"))