diff options
author | Jakub Kądziołka <kuba@kadziolka.net> | 2020-08-06 01:39:44 +0200 |
---|---|---|
committer | Jakub Kądziołka <kuba@kadziolka.net> | 2020-08-06 01:39:44 +0200 |
commit | d9a412bd94e533f854d44f87d956908490a05133 (patch) | |
tree | 310d219118d554ef5b98d9b487e9ba21ba1ab607 /gnu/packages | |
parent | 05f3d34094b23dc9612ff6641a0257bc4f7dcd12 (diff) | |
download | guix-d9a412bd94e533f854d44f87d956908490a05133.tar.gz guix-d9a412bd94e533f854d44f87d956908490a05133.zip |
gnu: perf: Fix build.
This is a follow-up to commit 843344273c6a587b8e6c84d8406500fd64d8908a.
* gnu/packages/linux.scm (perf)[native-inputs]: Add python-3 for
bpf_helpers_doc.py
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 52e783db89..5a1db30368 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3844,7 +3844,8 @@ in a digital read-out.") ;; There are build scripts written in these languages. ("perl" ,perl) - ("python" ,python-2))) + ("python2" ,python-2) + ("python3" ,python-3))) (inputs `(("slang" ,slang) ;for the interactive TUI ;; ("newt" ,newt) |