gnu: perf: Remove input labels.

* gnu/packages/linux.scm (perf)[native-inputs, inputs]: Remove labels.
This commit is contained in:
Ludovic Courtès 2022-02-02 15:40:17 +01:00
parent d040b627b1
commit 2178692c93
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -4574,28 +4574,26 @@ (define-public perf
"lib=lib")
#:tests? #f)) ;no tests
(native-inputs
`(("pkg-config" ,pkg-config)
("bison" ,bison)
("flex" ,flex)
;; There are build scripts written in these languages.
("perl" ,perl)
("python2" ,python-2)
("python3" ,python-3)))
(list pkg-config
bison
flex
;; There are build scripts written in these languages.
perl
python-2
python-3))
(inputs
`(("slang" ,slang) ;for the interactive TUI
;; ("newt" ,newt)
("python" ,python-2) ;'perf' links against libpython
("elfutils" ,elfutils)
("libiberty" ,libiberty) ;used alongside BDF for symbol demangling
("libunwind" ,libunwind) ;better stack walking
("numactl" ,numactl) ;for 'perf bench numa mem'
;; Documentation.
("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
("docbook-xsl" ,docbook-xsl)
("xmlto" ,xmlto)
("asciidoc" ,asciidoc)))
(list slang ;for the interactive TUI
;; newt
python-2 ;'perf' links against libpython
elfutils
libiberty ;used alongside BDF for symbol demangling
libunwind ;better stack walking
numactl ;for 'perf bench numa mem'
;; Documentation.
libxml2 ;for $XML_CATALOG_FILES
docbook-xsl
xmlto
asciidoc))
(home-page "https://perf.wiki.kernel.org/")
(synopsis "Linux profiling with performance counters")
(description