aboutsummaryrefslogtreecommitdiff
path: root/AUTHORS
blob: 1e30a74a64f51ec735dcc44ff4dfe5fa4fa13c6f (about) (plain)
1
2
3
4
5
6
7
8
9
GNU Guix consists of Scheme code that implements the deployment model
of the Nix package management tool.  In fact, it currently talks to a
build daemon whose code comes from Nix (see the manual for details.)

Nix was initially written by Eelco Dolstra; other people have been
contributing to it.  See `nix/AUTHORS' for details.

The list of GNU Guix contributors is now generated from the output of
'git log' and written to this file, as can be seen in release tarballs.
) #:use-module (gnu packages xdisorg) #:use-module (gnu packages xiph) #:use-module (gnu packages xml)) (define-public liblcf (package (name "liblcf") (version "0.8") (source (origin (method url-fetch) (uri (string-append "https://easyrpg.org/downloads/player/" version "/liblcf-" version ".tar.gz")) (sha256 (base32 "0kskflh2izc8q5p5x0rfxw8xa3591xfkmqf74rj72ff34xri4nj1")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) (propagated-inputs ;; Required by 'liblcf.pc'. (list expat icu4c)) (home-page "https://easyrpg.org/") (synopsis "Library to handle RPG Maker 2000 and 2003 game data") (description "@code{liblcf} is a library to handle RPG Maker 2000 and 2003 game data. It can read and write LCF and XML files.") ;; It includes a copy of Boost Preprocessor Cat and Stringize (boost-1.0): ;; src/boost/preprocessor/config.hpp ;; src/boost/preprocessor/cat.hpp ;; src/boost/preprocessor/stringize.hpp ;; and a copy of inih (bsd-3): ;; src/ini.h ;; src/ini.cpp ;; src/inireader.h ;; src/inireader.cpp ;; TODO: Unbundle them. (license license:expat))) (define-public easyrpg-player (package (name "easyrpg-player") (version "0.8") (source (origin (method url-fetch) (uri (string-append "https://easyrpg.org/downloads/player/" version "/easyrpg-player-" version ".tar.gz")) (sha256 (base32 "1brx2iix9d5i2lyjjcs03pq1xgl1gyh0yas8avazahgd9sn47696")))) (build-system gnu-build-system) (arguments '(#:configure-flags (list "--enable-fmmidi" (string-append "--with-bash-completion-dir=" %output "/etc/bash_completion.d/")))) (native-inputs (list pkg-config)) (inputs (list fluidsynth fmt freetype harfbuzz liblcf libpng libsndfile libvorbis libxmp mpg123 opusfile pixman sdl2-mixer sdl2 speexdsp wildmidi zlib)) (home-page "https://easyrpg.org/") (synopsis "Play RPG Maker 2000 and 2003 games") (description "EasyRPG Player is a game interpreter to play RPG Maker 2000, 2003 and EasyRPG games. It uses the LCF parser library (liblcf) to read RPG Maker game data.") ;; It bundles FMMidi YM2608 FM synthesizer emulator (bsd-3): ;; src/midisynth.h ;; src/midisynth.cpp ;; and PicoJSON JSON parser/serializer (bsd-2): ;; src/picojson.h ;; TODO: Unbundle them. (license license:gpl3+)))