From 389691a42c0b73764d1e3bfe25771dac7147d8ff Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Tue, 15 May 2018 12:39:51 +0800 Subject: i7z: do not build the GUI by default --- pkgs/os-specific/linux/i7z/default.nix | 44 ++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 13 deletions(-) (limited to 'pkgs/os-specific/linux/i7z') diff --git a/pkgs/os-specific/linux/i7z/default.nix b/pkgs/os-specific/linux/i7z/default.nix index 6d0c5ae82bc..48d28036aa4 100644 --- a/pkgs/os-specific/linux/i7z/default.nix +++ b/pkgs/os-specific/linux/i7z/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, qt4, ncurses }: +{ stdenv, lib, fetchurl, ncurses +, withGui ? false, qt4 ? null }: stdenv.mkDerivation rec { name = "i7z-0.27.2"; @@ -8,29 +9,46 @@ stdenv.mkDerivation rec { sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7"; }; - buildInputs = [ qt4 ncurses ]; + buildInputs = [ ncurses ] ++ lib.optional withGui qt4; + + enableParallelBuilding = true; buildPhase = '' + runHook preBuild + make - cd GUI - qmake - make clean - make - cd .. + ${lib.optionalString withGui '' + cd GUI + qmake + make clean + make + cd .. + ''} + + runHook postBuild ''; installPhase = '' - mkdir -p $out/sbin + runHook preInstall + + mkdir -p $out/{bin,sbin} 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"; homepage = https://github.com/ajaiantilal/i7z; repositories.git = https://github.com/ajaiantilal/i7z.git; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2; + maintainers = with maintainers; [ bluescreen303 ]; + # broken on ARM + platforms = [ "x86_64-linux" ]; }; } -- cgit 1.4.1