Skip to content
Snippets Groups Projects
Unverified Commit 442a11f6 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

gnu: guile-newt: Update to 0.0.1.

* gnu/packages/guile-xyz.scm (guile-newt): Update to 0.0.1.
parent 1b0b1651
No related branches found
No related tags found
No related merge requests found
...@@ -948,40 +948,37 @@ (define-public guile-debbugs-next ...@@ -948,40 +948,37 @@ (define-public guile-debbugs-next
`(("guile" ,guile-2.2) `(("guile" ,guile-2.2)
("guile-email" ,guile-email)))))) ("guile-email" ,guile-email))))))
;; There has not been any release yet.
(define-public guile-newt (define-public guile-newt
(let ((commit "80c1e9e71945f833386d1632b52573e59325804f") (package
(revision "4")) (name "guile-newt")
(package (version "0.0.1")
(name "guile-newt") (source (origin
(version (string-append "0-" revision "." (string-take commit 9))) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://gitlab.com/mothacehe/guile-newt")
(uri (git-reference (commit version)))
(url "https://gitlab.com/mothacehe/guile-newt") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (string-append name "-" version "-checkout")) (base32
(sha256 "1w7qy4dw1f4bx622l6hw8mv49sf1ha8kch8j4nganyk8fj0wn695"))))
(base32 (build-system gnu-build-system)
"1w7qy4dw1f4bx622l6hw8mv49sf1ha8kch8j4nganyk8fj0wn695")))) (arguments
(build-system gnu-build-system) '(#:make-flags
(arguments '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
'(#:make-flags (inputs
'("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings `(("guile" ,guile-2.2)
(inputs ("newt" ,newt)))
`(("guile" ,guile-2.2) (native-inputs
("newt" ,newt))) `(("autoconf" ,autoconf)
(native-inputs ("automake" ,automake)
`(("autoconf" ,autoconf) ("pkg-config" ,pkg-config)))
("automake" ,automake) (synopsis "Guile bindings to Newt")
("pkg-config" ,pkg-config))) (description
(synopsis "Guile bindings to Newt") "This package provides bindings for Newt, a programming library for
(description
"This package provides bindings for Newt, a programming library for
color text mode, widget based user interfaces. The bindings are written in pure color text mode, widget based user interfaces. The bindings are written in pure
Scheme by using Guile’s foreign function interface.") Scheme by using Guile’s foreign function interface.")
(home-page "https://gitlab.com/mothacehe/guile-newt") (home-page "https://gitlab.com/mothacehe/guile-newt")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public guile-mastodon (define-public guile-mastodon
(package (package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment