-
Notifications
You must be signed in to change notification settings - Fork 0
/
guix.scm
26 lines (24 loc) · 900 Bytes
/
guix.scm
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
26
(use-modules (gnu packages agda)
(guix build-system copy)
(guix gexp)
(guix git-download)
((guix licenses) #:prefix license:)
(guix packages)
(yellowsquid packages agda)
(yellowsquid build-system agda))
(define %source-dir (dirname (current-filename)))
(define-public agda-helium
(package
(name "agda-helium")
(version "0.1")
(home-page "https://git.yellowsquid.uk/yellowsquid/helium.git")
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
(build-system agda-build-system)
(inputs (list agda-stdlib-1.7.1))
(arguments '(#:readme "Everything.agda"))
(synopsis "Semantics of the Arm M-profile Vector Extension (MVE) in Agda")
(description "")
(license license:expat)))
agda-helium