mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: perf: Remove input labels.
* gnu/packages/linux.scm (perf)[native-inputs, inputs]: Remove labels.
This commit is contained in:
parent
d040b627b1
commit
2178692c93
1 changed files with 19 additions and 21 deletions
|
@ -4574,28 +4574,26 @@ (define-public perf
|
||||||
"lib=lib")
|
"lib=lib")
|
||||||
#:tests? #f)) ;no tests
|
#:tests? #f)) ;no tests
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
(list pkg-config
|
||||||
("bison" ,bison)
|
bison
|
||||||
("flex" ,flex)
|
flex
|
||||||
|
|
||||||
;; There are build scripts written in these languages.
|
;; There are build scripts written in these languages.
|
||||||
("perl" ,perl)
|
perl
|
||||||
("python2" ,python-2)
|
python-2
|
||||||
("python3" ,python-3)))
|
python-3))
|
||||||
(inputs
|
(inputs
|
||||||
`(("slang" ,slang) ;for the interactive TUI
|
(list slang ;for the interactive TUI
|
||||||
;; ("newt" ,newt)
|
;; newt
|
||||||
("python" ,python-2) ;'perf' links against libpython
|
python-2 ;'perf' links against libpython
|
||||||
("elfutils" ,elfutils)
|
elfutils
|
||||||
("libiberty" ,libiberty) ;used alongside BDF for symbol demangling
|
libiberty ;used alongside BDF for symbol demangling
|
||||||
("libunwind" ,libunwind) ;better stack walking
|
libunwind ;better stack walking
|
||||||
("numactl" ,numactl) ;for 'perf bench numa mem'
|
numactl ;for 'perf bench numa mem'
|
||||||
|
|
||||||
;; Documentation.
|
;; Documentation.
|
||||||
("libxml2" ,libxml2) ;for $XML_CATALOG_FILES
|
libxml2 ;for $XML_CATALOG_FILES
|
||||||
("docbook-xsl" ,docbook-xsl)
|
docbook-xsl
|
||||||
("xmlto" ,xmlto)
|
xmlto
|
||||||
("asciidoc" ,asciidoc)))
|
asciidoc))
|
||||||
(home-page "https://perf.wiki.kernel.org/")
|
(home-page "https://perf.wiki.kernel.org/")
|
||||||
(synopsis "Linux profiling with performance counters")
|
(synopsis "Linux profiling with performance counters")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue