summaryrefslogtreecommitdiff
path: root/guix.scm.in
diff options
context:
space:
mode:
Diffstat (limited to 'guix.scm.in')
-rw-r--r--guix.scm.in24
1 files changed, 24 insertions, 0 deletions
diff --git a/guix.scm.in b/guix.scm.in
new file mode 100644
index 0000000..7f4142a
--- /dev/null
+++ b/guix.scm.in
@@ -0,0 +1,24 @@
+(use-modules (guix packages)
+ (guix gexp)
+ (guix build-system gnu)
+ ((guix licenses) #:prefix license:)
+ (gnu packages autotools)
+ (gnu packages readline)
+ (gnu packages pkg-config)
+ (gnu packages man))
+
+(package
+ (name "@PACKAGE_NAME@")
+ (version "@VERSION@")
+ (source (local-file "@PACKAGE_TARNAME@-@VERSION@.tar.gz"))
+ (build-system gnu-build-system)
+ (inputs
+ (list readline))
+ (native-inputs
+ (list autoconf
+ pkg-config
+ help2man))
+ (synopsis "A programming language with constraints")
+ (description "...")
+ (home-page "https://aplwc.org")
+ (license license:gpl3+))