mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add muon-as-meson-wrapper.
* gnu/packages/build-tools.scm (muon-as-meson-wrapper): New variable. Change-Id: I13d9a71e0be896e47115379415b88f0969e207a5
This commit is contained in:
parent
3e9acb867e
commit
9539773875
1 changed files with 20 additions and 0 deletions
|
|
@ -43,6 +43,7 @@
|
|||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system copy)
|
||||
#:use-module (guix build-system guile)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix modules)
|
||||
#:use-module (guix search-paths)
|
||||
#:use-module (gnu packages)
|
||||
|
|
@ -427,6 +428,25 @@ resembles Python.")
|
|||
with minimal dependencies.")
|
||||
(license license:gpl3)))) ;for the combined work
|
||||
|
||||
(define-public muon-as-meson-wrapper
|
||||
(package/inherit muon
|
||||
(name "muon-as-meson-wrapper")
|
||||
(build-system trivial-build-system)
|
||||
(arguments
|
||||
(list #:builder
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
(let ((bindir (string-append #$output "/bin"))
|
||||
(samu (string-append #$(this-package-input "muon")
|
||||
"/bin/muon")))
|
||||
(mkdir-p bindir)
|
||||
(symlink samu (string-append bindir "/meson")))))))
|
||||
(inputs (list muon))
|
||||
(description "This package provides the @command{meson} command,
|
||||
implemented as a symbolic link to the @command{muon} command of @code{muon}
|
||||
package.")))
|
||||
|
||||
(define-public premake4
|
||||
(package
|
||||
(name "premake")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue