mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add genie.
* gnu/packages/build-tools.scm (genie): Add genie. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
b5e83548fb
commit
31f0e46bea
1 changed files with 33 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2022 Juliana Sims <jtsims@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -763,3 +764,35 @@ (define-public build
|
||||||
@item Extensible language/compiler framework.
|
@item Extensible language/compiler framework.
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public genie
|
||||||
|
(let ((commit "b139103697bbb62db895e4cc7bfe202bcff4ff25")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "genie")
|
||||||
|
(version (git-version "1167" revision commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bkaradzic/genie")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16plshzkyjjzpfcxnwjskrs7i4gg0qn92h2k0rbfl4a79fgmwvwv"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(replace 'install
|
||||||
|
(lambda _
|
||||||
|
(install-file "bin/linux/genie"
|
||||||
|
(string-append #$output "/bin")))))
|
||||||
|
#:tests? #f)) ;no tests
|
||||||
|
(home-page "https://github.com/bkaradzic/genie")
|
||||||
|
(synopsis "Project generator")
|
||||||
|
(description
|
||||||
|
"GENie generates projects from Lua scripts, making it easy to apply the
|
||||||
|
same settings to multiple projects. It supports generating projects using GNU
|
||||||
|
Makefiles, JSON Compilation Database, and experimentally Ninja.")
|
||||||
|
(license license:bsd-3))))
|
||||||
|
|
Loading…
Reference in a new issue