3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: ninja: Update to 1.10.2.

* gnu/packages/ninja.scm (ninja): Update to 1.10.2.
[arguments]: Remove trailing #t's.
This commit is contained in:
Marius Bakke 2021-05-16 09:31:19 +02:00
parent 13ee1b9ea0
commit bd6cb1d4eb
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -31,7 +31,7 @@
(define-public ninja
(package
(name "ninja")
(version "1.10.0")
(version "1.10.2")
(source (origin
(method git-fetch)
(uri (git-reference
@ -40,7 +40,7 @@
(file-name (git-file-name name version))
(sha256
(base32
"1fbzl7mrcrwp527sgkc1npfl3k6bbpydpiq98xcf1a1hkrx0z5x4"))))
"0mspq4mvx41qri2v2zlg2y3znx5gfw6d8s3czbcfpr2218qbpz55"))))
(build-system gnu-build-system)
(inputs `(("python" ,python-wrapper)))
(arguments
@ -51,8 +51,7 @@
(substitute* "src/subprocess-posix.cc"
(("/bin/sh") (which "sh")))
(substitute* "src/subprocess_test.cc"
(("/bin/echo") (which "echo")))
#t))
(("/bin/echo") (which "echo")))))
(replace 'build
(lambda _
(invoke "./configure.py" "--bootstrap")))
@ -67,8 +66,7 @@
(bin (string-append out "/bin"))
(doc (string-append out "/share/doc/ninja")))
(install-file "ninja" bin)
(install-file "doc/manual.asciidoc" doc)
#t))))))
(install-file "doc/manual.asciidoc" doc)))))))
(home-page "https://ninja-build.org/")
(synopsis "Small build system")
(description