aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/cgit.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-10-13 15:22:15 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-10-13 19:01:32 +0200
commit65ed6e37336cf1e16d837979b2b12c92ba6138a2 (patch)
treefededfc0c7cda3640cd68082316880aa51ea2dec /gnu/services/cgit.scm
parente1a2c23e7e716046c4f1753089d6caf2a410449f (diff)
downloadguix-65ed6e37336cf1e16d837979b2b12c92ba6138a2.tar.gz
guix-65ed6e37336cf1e16d837979b2b12c92ba6138a2.zip
gnu: easyrpg-player: Update to 0.6.2.3.
* gnu/packages/easyrpg.scm (easyrpg-player): Update to 0.6.2.3.
Diffstat (limited to 'gnu/services/cgit.scm')
0 files changed, 0 insertions, 0 deletions
supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes.") (license lgpl2.0))) ; plus certain additional permissions (define-public ntk (package (name "ntk") (version "1.3.1000") (source (origin (method git-fetch) (uri (git-reference (url "git://git.tuxfamily.org/gitroot/non/fltk.git") (commit (string-append "v" version)))) (sha256 (base32 "0j38mhnfqy6swcrnc5zxcwlqi8b1pgklyghxk6qs1lf4japv2zc0")) (file-name (git-file-name name version)))) (build-system waf-build-system) (arguments `(#:tests? #f ;no "check" target #:configure-flags '("--enable-gl") #:phases (modify-phases %standard-phases (add-before 'configure 'setup-waf (lambda* (#:key inputs #:allow-other-keys) (let ((waf (assoc-ref inputs "waf"))) (delete-file "waf") (copy-file (string-append waf "/bin/waf") "waf")) #t)) (add-before 'configure 'set-ldflags (lambda* (#:key outputs #:allow-other-keys) (setenv "LDFLAGS" (string-append "-Wl,-rpath=" (assoc-ref outputs "out") "/lib")) #t))))) (inputs `(("libjpeg" ,libjpeg-turbo) ("glu" ,glu) ("waf" ,python-waf))) ;; ntk.pc lists "x11" and "xft" in Requires.private, and "cairo" in ;; Requires. (propagated-inputs (list cairo libxft libx11)) (native-inputs (list pkg-config)) (home-page "https://non.tuxfamily.org/ntk/") (synopsis "Fork of FLTK with graphics rendering via Cairo") (description "The Non Tool Kit (NTK) is a fork of the Fast Light ToolKit library, adding improved graphics rendering via Cairo, a streamlined and enhanced widget set, and other features designed to improve the appearance and performance of the Non applications.") (license lgpl2.0+))) ; plus certain additional permissions