-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathguix.scm
36 lines (33 loc) · 1.06 KB
/
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
27
28
29
30
31
32
33
34
35
36
(define-module (arximboldi packages schmutz)
#:use-module (rnrs io ports)
#:use-module (ice-9 popen)
#:use-module (ice-9 rdelim)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix build-system cmake)
#:use-module (guix licenses)
#:use-module (gnu packages guile)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages version-control))
(define %source-dir (dirname (current-filename)))
(define-public schmutz
(package
(name "schmutz")
(version "git")
(synopsis "Bind C++ code to Scheme")
(description "Bind C++ code to Scheme")
(home-page "https://github.com/arximboldi/schmutz")
(license boost1.0)
(build-system cmake-build-system)
(arguments `(#:tests? #f))
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
(native-inputs
`(("pkg-config" ,pkg-config)
("git" ,git)))
(inputs
`(("guile" ,guile-2.2)))))
schmutz