aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/terminals.scm
blob: dc74fc1b8bddf32dc051ebca87679ce061cf86dd (plain)
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
37
(define-module (oni packages terminals)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages lua)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages pkg-config))

(define-public tym
  (package
    (name "tym")
    (version "3.5.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/endaaman/tym.git")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "084db9nvzw5dj671m1qnp4yq1h7xp74gka5x5pyhzin7v167fxb9"))))
    (build-system gnu-build-system)
    (native-inputs
     (list
      luajit
      vte
      autoconf
      automake
      pkg-config))
    (arguments
     '(#:configure-flags '("--enable-luajit")))
    (home-page "https://github.com/endaaman/tym/")
    (synopsis "Lua-configurable terminal emulator")
    (description "tym is a Lua-configurable terminal emulator base on VTE.")
    (license license:expat)))