Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

perf: depend on libiberty to get c++ demangling.

(cherry picked from commit dd02b6f11894eaafb309fb96652c12295f82304c)

+3 -1
+3 -1
pkgs/os-specific/linux/kernel/perf.nix
··· 1 { lib, stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto 2 , docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig, libunwind, binutils 3 , zlib, withGtk ? false, gtk ? null }: 4 5 with lib; ··· 22 23 # perf refers both to newt and slang 24 # binutils is required for libbfd. 25 - nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt flex bison ]; 26 buildInputs = [ python perl newt slang pkgconfig libunwind binutils zlib ] ++ 27 stdenv.lib.optional withGtk gtk; 28
··· 1 { lib, stdenv, kernel, elfutils, python, perl, newt, slang, asciidoc, xmlto 2 , docbook_xsl, docbook_xml_dtd_45, libxslt, flex, bison, pkgconfig, libunwind, binutils 3 + , libiberty 4 , zlib, withGtk ? false, gtk ? null }: 5 6 with lib; ··· 23 24 # perf refers both to newt and slang 25 # binutils is required for libbfd. 26 + nativeBuildInputs = [ asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt 27 + flex bison libiberty ]; 28 buildInputs = [ python perl newt slang pkgconfig libunwind binutils zlib ] ++ 29 stdenv.lib.optional withGtk gtk; 30