gnu: Add informlib.
* gnu/packages/game-development.scm (informlib): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>master
parent
c3d8a7242a
commit
c95ad4e38d
|
@ -56,6 +56,7 @@
|
||||||
#:use-module (guix svn-download)
|
#:use-module (guix svn-download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system scons)
|
#:use-module (guix build-system scons)
|
||||||
|
@ -2610,6 +2611,30 @@ Inform standard library is in a non-standard location.")
|
||||||
(home-page "https://jxself.org/git/inform.git")
|
(home-page "https://jxself.org/git/inform.git")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public informlib
|
||||||
|
(package
|
||||||
|
(name "informlib")
|
||||||
|
(version "6.12.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://jxself.org/git/informlib.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0fcnw4jjzln402qk097n2s8y24vw1p3mmlmh6k1mbr2zfajjcn5r"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:install-plan
|
||||||
|
#~'(("." "lib"))))
|
||||||
|
(synopsis "Inform 6 standard library")
|
||||||
|
(description
|
||||||
|
"This package provides the standard library for Inform 6.")
|
||||||
|
(home-page "https://jxself.org/git/informlib.git")
|
||||||
|
(license license:agpl3+)))
|
||||||
|
|
||||||
(define-public instead
|
(define-public instead
|
||||||
(package
|
(package
|
||||||
(name "instead")
|
(name "instead")
|
||||||
|
|
Reference in New Issue