gnu: gnuradio: Build from Git sources.

* gnu/packages/radio.scm (gnuradio)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
[arguments]: Add a new 'make-source-writable phase.
This commit is contained in:
Tobias Geerinckx-Rice 2021-06-29 01:20:01 +02:00
parent 54f0468fb5
commit 87c09ae73f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79
2 changed files with 14 additions and 6 deletions

View file

@ -481,11 +481,13 @@ (define-public gnuradio
(version "3.9.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://www.gnuradio.org/releases/gnuradio/"
"gnuradio-" version ".tar.xz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/gnuradio/gnuradio")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1jvm9xd0l2pz1fww4zii6hl7ccnvy256nrf70ljb594n7j9j49ha"))))
(base32 "1fbl8lslzrkx7lpkibhvs6gvhqnn8yrrq3n6irybfnifh2536d36"))))
(build-system cmake-build-system)
(native-inputs
`(("doxygen" ,doxygen)
@ -550,6 +552,11 @@ (define-public gnuradio
"/share/javascript/mathjax"))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'make-source-writable
(lambda _
;; The test_add and test_newmod open(sources, "w") for some reason.
(for-each make-file-writable
(find-files "." ".*"))))
(add-after 'unpack 'fix-paths
(lambda* (#:key inputs #:allow-other-keys)
(let ((qwt (assoc-ref inputs "qwt")))

View file

@ -945,7 +945,7 @@ (define-public gash-utils
(define-public nushell
(package
(name "nushell")
(version "0.32.0")
(version "0.33.0")
(source
(origin
(method git-fetch)
@ -954,7 +954,7 @@ (define-public nushell
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1wj054rzv88ys4ask4zp7crrw0dxrck8svlj3i16qqd8x5dnyhqs"))))
(base32 "0rdvvg6hf01bljq0zz0c66kbzy5ggbcbil1j45hklzq0ibffdj02"))))
(build-system cargo-build-system)
(arguments
`(#:rust ,rust-1.47
@ -995,6 +995,7 @@ (define-public nushell
("rust-nu-plugin-to-sqlite" ,rust-nu-plugin-to-sqlite-0.32)
("rust-nu-plugin-tree" ,rust-nu-plugin-tree-0.32)
("rust-nu-plugin-xpath" ,rust-nu-plugin-xpath-0.32)
("rust-polars-0.13" ,rust-polars-0.13)
("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4))
#:cargo-development-inputs
(("rust-dunce" ,rust-dunce-1)