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


                              
                 

                  
                                                  
                                  
                                                                    

    
                                                                   
 
                                               
 
                           
                                                
                                 
                                                      

                                        

    
{ stdenv, fetchgit, pkgconfig, vte, gtk3, ncurses }:

stdenv.mkDerivation rec {
  name = "termite-${version}";
  version = "11";

  src = fetchgit {
    url = "https://github.com/thestinger/termite";
    rev = "refs/tags/v${version}";
    sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph";
  };

  makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ];

  buildInputs = [ pkgconfig vte gtk3 ncurses ];

  meta = with stdenv.lib; {
    description = "A simple VTE-based terminal";
    license = licenses.lgpl2Plus;
    homepage = https://github.com/thestinger/termite/;
    maintainers = [ maintainers.koral ];
    platforms = platforms.all;
  };
}