-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.rkt
More file actions
16 lines (13 loc) · 689 Bytes
/
Copy pathinfo.rkt
File metadata and controls
16 lines (13 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#lang info
(define collection "widgetkit")
(define scribblings '(("widgetkit.scrbl" ())))
(define version "0.7.3")
(define pkg-desc "A curated collection of GUI widgets for Racket")
(define pkg-authors '("turinglambdaai"))
(define license 'MIT)
(define pkg-homepage "https://github.com/turinglambdaai/widgetkit")
;; Core language + the toolkit this collection builds upon.
;; The four aggregated widgets are pulled in as ordinary dependencies, so a
;; single `raco pkg install widgetkit` brings the whole set.
(define deps '("base" "gui-lib" "gui-widget-mixins" "table-panel" "canvas-list" "text-date"))
(define build-deps '("scribble-lib" "racket-doc" "gui-doc" "rackunit-lib" "fmt"))