summary refs log blame commit diff
path: root/pkgs/os-specific/linux/dstat/default.nix
blob: 6d2d8eb75b00b6ce69b7f6f40dde50fa27f0b0c3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                      
 
                                            
                  
                   
                    

                  

                                                                         

    
                                                                
 

                                       
                                  
 
                           
                                                        
                                                       

                                
                                        

    
{ stdenv, fetchurl, python2Packages }:

python2Packages.buildPythonApplication rec {
  pname = "dstat";
  format = "other";
  version = "0.7.3";

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

  propagatedBuildInputs = with python2Packages; [ python-wifi ];

  patches = [ ./fix_pluginpath.patch ];

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

  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; [ ];
  };
}