2023-07-07 08:58:48 +02:00
|
|
|
(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)))
|
2023-07-13 00:08:31 +02:00
|
|
|
(propagated-inputs
|
|
|
|
`(("guile-termios" ,guile-termios)))
|
2023-07-07 08:58:48 +02:00
|
|
|
(synopsis "")
|
|
|
|
(description "")
|
|
|
|
(home-page "")
|
|
|
|
(license license:gpl3+))
|
|
|
|
|