mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #40540 from peterhoeg/f/i7z
i7z: do not build the GUI by default
This commit is contained in:
commit
7d842f3b49
1 changed files with 31 additions and 13 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv, fetchurl, qt4, ncurses }:
|
{ stdenv, lib, fetchurl, ncurses
|
||||||
|
, withGui ? false, qt4 ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "i7z-0.27.2";
|
name = "i7z-0.27.2";
|
||||||
|
@ -8,29 +9,46 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7";
|
sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qt4 ncurses ];
|
buildInputs = [ ncurses ] ++ lib.optional withGui qt4;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
runHook preBuild
|
||||||
|
|
||||||
make
|
make
|
||||||
cd GUI
|
${lib.optionalString withGui ''
|
||||||
qmake
|
cd GUI
|
||||||
make clean
|
qmake
|
||||||
make
|
make clean
|
||||||
cd ..
|
make
|
||||||
|
cd ..
|
||||||
|
''}
|
||||||
|
|
||||||
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/sbin
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/{bin,sbin}
|
||||||
make install prefix=$out
|
make install prefix=$out
|
||||||
install -Dm755 GUI/i7z_GUI $out/sbin/i7z-gui
|
${lib.optionalString withGui ''
|
||||||
|
install -Dm755 GUI/i7z_GUI $out/bin/i7z-gui
|
||||||
|
''}
|
||||||
|
mv $out/sbin/* $out/bin/
|
||||||
|
rmdir $out/sbin
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "A better i7 (and now i3, i5) reporting tool for Linux";
|
description = "A better i7 (and now i3, i5) reporting tool for Linux";
|
||||||
homepage = https://github.com/ajaiantilal/i7z;
|
homepage = https://github.com/ajaiantilal/i7z;
|
||||||
repositories.git = https://github.com/ajaiantilal/i7z.git;
|
repositories.git = https://github.com/ajaiantilal/i7z.git;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
maintainers = with maintainers; [ bluescreen303 ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
# broken on ARM
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue