aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2023-07-06 23:58:48 -0700
committerGravatar Tom Willemse2023-07-06 23:58:48 -0700
commit97e3757498d2a864fbd59ee9201f55210f4e2131 (patch)
tree62630c2b178968f28152c3ae115413d6195f2718
parent239587824837021e77f78a67b4c7e3d87ed8f1dc (diff)
downloadguile-inkplate-97e3757498d2a864fbd59ee9201f55210f4e2131.tar.gz
guile-inkplate-97e3757498d2a864fbd59ee9201f55210f4e2131.zip
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
-rw-r--r--guix.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..fd9512d
--- /dev/null
+++ b/guix.scm
@@ -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+))
+