summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dstat/default.nix
blob: c8e40a4c7ac89757d5f6f40629456453e7f96ce0 (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, python2Packages }:

stdenv.mkDerivation rec {
  name = "dstat-${version}";
  version = "0.7.3";

  src = fetchurl {
    url = "https://github.com/dagwieers/dstat/archive/${version}.tar.gz";
    sha256 = "16286z3y2lc9nsq8njzjkv6k2vyxrj9xiixj1k3gnsbvhlhkirj6";
  };

  buildInputs = with python2Packages; [ python-wifi wrapPython ];

  pythonPath = with python2Packages; [ python-wifi ];

  patchPhase = ''
    sed -i -e 's|/usr/bin/env python|${python2Packages.python.interpreter}|' \
           -e "s|/usr/share/dstat|$out/share/dstat|" dstat
  '';

  makeFlags = [ "prefix=$(out)" ];

  postInstall = ''
    wrapPythonProgramsIn $out/bin "$out $pythonPath"
  '';

  meta = with stdenv.lib; {
    homepage = http://dag.wieers.com/home-made/dstat/;
    description = "Versatile resource statistics tool";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jgeerds nckx ];
  };
}