gnu: rdma-core: Remove input labels.
* gnu/packages/linux.scm (rdma-core)[arguments]: Don't reference rst2man by label. Reindent. [native-inputs, inputs]: Remove labels.master
parent
ffb9813aee
commit
8f18bad2aa
|
@ -6521,23 +6521,23 @@ from the ntfs-3g package. It is meant to be used in initrds.")
|
||||||
"1rah0v9gq9rksqd2c17nmydsxcjz178n7m2y4ricwlf5pq1b2yfi"))))
|
"1rah0v9gq9rksqd2c17nmydsxcjz178n7m2y4ricwlf5pq1b2yfi"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ;no tests
|
||||||
|
|
||||||
;; Upstream uses the "ninja" build system and encourage distros
|
;; Upstream uses the "ninja" build system and encourage distros
|
||||||
;; to do the same for consistency.
|
;; to do the same for consistency.
|
||||||
#:configure-flags (list "-GNinja"
|
#:configure-flags (list "-GNinja"
|
||||||
|
|
||||||
,@(if (%current-target-system)
|
,@(if (%current-target-system)
|
||||||
`((string-append
|
`((string-append
|
||||||
"-DPKG_CONFIG_EXECUTABLE="
|
"-DPKG_CONFIG_EXECUTABLE="
|
||||||
(search-input-file
|
(search-input-file
|
||||||
%build-inputs
|
%build-inputs
|
||||||
(string-append "/bin/"
|
(string-append "/bin/"
|
||||||
,(pkg-config-for-target)))))
|
,(pkg-config-for-target)))))
|
||||||
'())
|
'())
|
||||||
(string-append "-DRST2MAN_EXECUTABLE="
|
(string-append "-DRST2MAN_EXECUTABLE="
|
||||||
(assoc-ref %build-inputs
|
(search-input-file
|
||||||
"python-docutils")
|
%build-inputs "/bin/rst2man.py")))
|
||||||
"/bin/rst2man.py"))
|
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
|
@ -6548,13 +6548,9 @@ from the ntfs-3g package. It is meant to be used in initrds.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "ninja" "install"))))))
|
(invoke "ninja" "install"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ninja" ,ninja)
|
(list ninja pkg-config python-wrapper python-docutils)) ;for 'rst2man'
|
||||||
("pkg-config" ,pkg-config)
|
|
||||||
("python" ,python-wrapper)
|
|
||||||
("python-docutils" ,python-docutils))) ;for 'rst2man'
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("libnl" ,libnl)
|
(list libnl eudev))
|
||||||
("udev" ,eudev)))
|
|
||||||
(home-page "https://github.com/linux-rdma/rdma-core")
|
(home-page "https://github.com/linux-rdma/rdma-core")
|
||||||
(synopsis "Utilities and libraries for working with RDMA devices")
|
(synopsis "Utilities and libraries for working with RDMA devices")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue