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


                          
                      
                      
 
                  
                                                                                          
                                                                    
    
 
                                                    
 



                      
 

                                                
                                                             




                                               
{ stdenv, lib, fetchurl }:

stdenv.mkDerivation rec {
  pname = "powerstat";
  version = "0.02.24";

  src = fetchurl {
    url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.gz";
    sha256 = "0yrc1xi9flxn2mvmzp0b0vd0md5z4p8fd4y8bszc67xy12qiqy0j";
  };

  installFlags = [ "DESTDIR=${placeholder "out"}" ];

  postInstall = ''
    mv $out/usr/* $out
    rm -r $out/usr
  '';

  meta = with lib; {
    description = "Laptop power measuring tool";
    homepage = "https://kernel.ubuntu.com/~cking/powerstat/";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ womfoo ];
  };
}