summaryrefslogtreecommitdiff
path: root/guix.scm
blob: 6a419596782b5b15ecac78ec6bb285c41d95a75a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(use-modules (guix gexp)
             (guix git-download)
             ((guix licenses) #:prefix license:)
             (guix packages)
             (yellowsquid build-system agda)
             (yellowsquid packages agda))

(define %source-dir (dirname (current-filename)))

(define-public cat-theory
  (package
    (name "cat-theory")
    (version "0.1")
    (home-page "https://git.yellowsquid.uk/yellowsquid/cat-theory.git")
    (source (local-file %source-dir
                        #:recursive? #t
                        #:select? (git-predicate %source-dir)))
    (build-system agda-build-system)
    (inputs (list agda-categories agda-stdlib-1.7))
    (synopsis "Solutions to exercises from the University of Cambridge Category
Theory course.")
    (description "")
    (license license:expat)))

cat-theory