tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
oprofile: depend on libiberty_static
Luca Bruno
10 years ago
18918507
088231fe
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
profiling
oprofile
default.nix
+2
-2
pkgs/development/tools/profiling/oprofile/default.nix
···
1
1
{ stdenv, fetchurl, binutils, popt, zlib, pkgconfig, linuxHeaders
2
2
-
, withGUI ? false , qt4 ? null}:
2
2
+
, libiberty_static, withGUI ? false , qt4 ? null}:
3
3
4
4
# libX11 is needed because the Qt build stuff automatically adds `-lX11'.
5
5
assert withGUI -> qt4 != null;
···
12
12
sha256 = "0v1nn38h227bgxjwqf22rjp2iqgjm4ls3gckzifks0x6w5nrlxfg";
13
13
};
14
14
15
15
-
buildInputs = [ binutils zlib popt pkgconfig linuxHeaders ]
15
15
+
buildInputs = [ binutils zlib popt pkgconfig linuxHeaders libiberty_static ]
16
16
++ stdenv.lib.optionals withGUI [ qt4 ];
17
17
18
18
configureFlags = [