summary refs log blame commit diff
path: root/pkgs/applications/misc/googler/default.nix
blob: 3e4c9828edec27ca8338efeaccf03071cd87475a (plain) (tree)
1
2
3
4
5
6
7
8
9
                                    

                         
                    
                  


                         
                 
                        
                                                                    



                                     
                                  

                           
                                                  

                                                                                     
                                                        


                               
{ stdenv, fetchFromGitHub, python }:

stdenv.mkDerivation rec {
  pname = "googler";
  version = "4.0";

  src = fetchFromGitHub {
    owner = "jarun";
    repo = pname;
    rev = "v${version}";
    sha256 = "13jj15ph0vmbyxjslzl6z4h5b7wyllvhwgsrb6zf7qlkcmkd4vwy";
  };

  propagatedBuildInputs = [ python ];

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

  meta = with stdenv.lib; {
    homepage = "https://github.com/jarun/googler";
    description = "Google Search, Google Site Search, Google News from the terminal";
    license = licenses.gpl3;
    maintainers = with maintainers; [ koral filalex77 ];
    platforms = platforms.unix;
  };
}