aboutsummaryrefslogtreecommitdiffstats
path: root/guix.scm
blob: 575e9819d467f52e9584838bbdeaf815b71b100a (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
26
27
28
29
30
31
32
(use-modules
  (guix packages)
  ((guix licenses) #:prefix license:)
  (guix download)
  (guix build-system gnu)
  (guix gexp)
  (gnu packages)
  (gnu packages autotools)
  (gnu packages guile)
  (gnu packages guile-xyz)
  (gnu packages pkg-config)
  (gnu packages texinfo))

(package
  (name "guile-inkplate")
  (version "0.1")
  (source (local-file "./guile-inkplate-0.1.tar.gz"))
  (build-system gnu-build-system)
  (arguments `())
  (native-inputs
    `(("autoconf" ,autoconf)
      ("automake" ,automake)
      ("pkg-config" ,pkg-config)
      ("texinfo" ,texinfo)))
  (inputs `(("guile" ,guile-3.0)))
  (propagated-inputs
   `(("guile-termios" ,guile-termios)))
  (synopsis "")
  (description "")
  (home-page "")
  (license license:gpl3+))