unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob 361dfa40d4e64981bede9905c655016846e42d70 1360 bytes (raw)
name: gnu/packages/libtermkey.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
(define-module (gnu packages libtermkey)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages pkg-config))

(define-public libtermkey
  (package
    (name "libtermkey")
    (version "0.18")
    (source (origin
              (method url-fetch)
              (uri "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.18.tar.gz")
              (sha256
                (base32 "09ir16kaarv55mnc4jn2sqnjjhzpb1aha51wpd9ayif887g4d5r3"))))
    (build-system gnu-build-system)
    (arguments '(
      #:make-flags (list
        "CC=gcc"
        (string-append "PREFIX=" (assoc-ref %outputs "out")))
      #:phases (modify-phases %standard-phases
        (delete 'configure))
      #:tests? #f))
    (inputs `())
    (native-inputs `(("libtool", libtool)
                     ("ncurses", ncurses)
                     ("pkg-config", pkg-config)))
    (synopsis "Keyboard entry processing libary for terminal-based programs")
    (description (string-append
      "Libtermkey handles all the necessary logic to recognise special keys, "
      "UTF-8 combining, and so on, with a simple interface."))
    (home-page "http://www.leonerd.org.uk/code/libtermkey")
    (license expat)))

debug log:

solving 361dfa4 ...
found 361dfa4 in https://yhetil.org/guix-devel/61a19eb41fa4eb66339c14519f0bcefd@openmailbox.org/ ||
	https://yhetil.org/guix-devel/2a0b5340eedb9caac760781b8df71906@openmailbox.org/

applying [1/1] https://yhetil.org/guix-devel/61a19eb41fa4eb66339c14519f0bcefd@openmailbox.org/
diff --git a/gnu/packages/libtermkey.scm b/gnu/packages/libtermkey.scm
new file mode 100644
index 0000000..361dfa4

Checking patch gnu/packages/libtermkey.scm...
Applied patch gnu/packages/libtermkey.scm cleanly.

skipping https://yhetil.org/guix-devel/2a0b5340eedb9caac760781b8df71906@openmailbox.org/ for 361dfa4
index at:
100644 361dfa40d4e64981bede9905c655016846e42d70	gnu/packages/libtermkey.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).