about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/thinkfan/default.nix
blob: dc63b97056a75dade5133cd22953dbba26f01277 (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
{ stdenv, fetchurl, cmake
, smartSupport ? false, libatasmart }:

stdenv.mkDerivation rec {
  name = "thinkfan-${version}";
  version = "0.9.3";

  src = fetchurl {
    url = "mirror://sourceforge/thinkfan/thinkfan-${version}.tar.gz";
    sha256 = "0nz4c48f0i0dljpk5y33c188dnnwg8gz82s4grfl8l64jr4n675n";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = stdenv.lib.optional smartSupport libatasmart;

  cmakeFlags = stdenv.lib.optional smartSupport "-DUSE_ATASMART=ON";

  installPhase = ''
    install -Dm755 {.,$out/bin}/thinkfan

    cd "$NIX_BUILD_TOP"; cd "$sourceRoot" # attempt to be a bit robust
    install -Dm644 {.,$out/share/doc/thinkfan}/README
    cp -R examples $out/share/doc/thinkfan
    install -Dm644 {src,$out/share/man/man1}/thinkfan.1
  '';

  meta = {
    license = stdenv.lib.licenses.gpl3;
    homepage = http://thinkfan.sourceforge.net/;
    maintainers = with stdenv.lib.maintainers; [ domenkozar ];
    platforms = stdenv.lib.platforms.linux;
  };
}