summary refs log tree commit diff
path: root/pkgs/os-specific/linux/i7z/default.nix
blob: 6d0c5ae82bccd8b580891278dd86dab09d88892c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchurl, qt4, ncurses }:

stdenv.mkDerivation rec {
  name = "i7z-0.27.2";

  src = fetchurl {
    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/i7z/${name}.tar.gz";
    sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7";
  };

  buildInputs = [ qt4 ncurses ];

  buildPhase = ''
    make
    cd GUI
    qmake
    make clean
    make
    cd ..
  '';

  installPhase = ''
    mkdir -p $out/sbin
    make install prefix=$out
    install -Dm755 GUI/i7z_GUI $out/sbin/i7z-gui
  '';

  meta = {
    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;
  };
}