mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
oprofile: remove withGUI
hasn't been supported since 2014 see 0c142c3a096d3e9ec42cc9b0ddad994fea60d135 upstream
This commit is contained in:
parent
824ad4fe30
commit
a661cfe9c2
@ -1,12 +1,8 @@
|
||||
{ lib, stdenv, buildPackages
|
||||
, fetchurl, pkg-config
|
||||
, libbfd, popt, zlib, linuxHeaders, libiberty_static
|
||||
, withGUI ? false, qt4 ? null
|
||||
}:
|
||||
|
||||
# libX11 is needed because the Qt build stuff automatically adds `-lX11'.
|
||||
assert withGUI -> qt4 != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "oprofile";
|
||||
version = "1.4.0";
|
||||
@ -23,14 +19,12 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libbfd zlib popt linuxHeaders libiberty_static ]
|
||||
++ lib.optionals withGUI [ qt4 ];
|
||||
buildInputs = [ libbfd zlib popt linuxHeaders libiberty_static ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-kernel=${linuxHeaders}"
|
||||
"--disable-shared" # needed because only the static libbfd is available
|
||||
]
|
||||
++ lib.optional withGUI "--with-qt-dir=${qt4} --enable-gui=qt4";
|
||||
"--with-kernel=${linuxHeaders}"
|
||||
"--disable-shared" # needed because only the static libbfd is available
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "System-wide profiler for Linux";
|
||||
|
Loading…
Reference in New Issue
Block a user