Add distribution file
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
This commit is contained in:
parent
2395878248
commit
97e3757498
1 changed files with 31 additions and 0 deletions
31
guix.scm
Normal file
31
guix.scm
Normal file
|
@ -0,0 +1,31 @@
|
|||
(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+))
|
||||
|
Loading…
Reference in a new issue