Skip to content

Instantly share code, notes, and snippets.

@apa512
Last active December 3, 2015 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apa512/04e3533f9e19f39ef65d to your computer and use it in GitHub Desktop.
Save apa512/04e3533f9e19f39ef65d to your computer and use it in GitHub Desktop.
(define-module (apa512 packages unibilium)
#:use-module (guix build-system gnu)
#:use-module (guix download)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages pkg-config))
(define-public unibilium
(package
(name "unibilium")
(version "1.1.2")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/mauke/unibilium/archive/v"
version
".tar.gz"))
(sha256
(base32
"143j7qrqjxxmdf3yzhn6av2qwiyjjk4cnskkgz6ir2scjfd5gvja"))))
(build-system gnu-build-system)
(arguments
`(#:phases (alist-delete 'configure %standard-phases)))
(inputs
`(("pkg-config", pkg-config) ("libtool", libtool)))
(home-page #f)
(synopsis "A very basic terminfo library")
(description #f)
(license lgpl3+)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment