(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+))