Tom Willemse
97e3757498
This file can be used either with ‘guix shell -D --file=guix.scm’ or to install the package from source: hall build -x autoreconv -ivf ./configure make dist guix shell -f guix.scm
31 lines
713 B
Scheme
31 lines
713 B
Scheme
(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 `())
|
|
(synopsis "")
|
|
(description "")
|
|
(home-page "")
|
|
(license license:gpl3+))
|
|
|