summary refs log blame commit diff
path: root/pkgs/misc/mxt-app/default.nix
blob: d701bd654d2122aa73bbe31950d053c6e9061b65 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                     

                        
                 
                    




                             
                                                                    

    


                                         
                                   
 

                                                                    
                                                         

                                              
                                

    
{ stdenv, fetchFromGitHub, autoreconfHook, libtool }:

stdenv.mkDerivation rec{
  version="1.28";
  pname = "mxt-app";

  src = fetchFromGitHub {
    owner = "atmel-maxtouch";
    repo = "mxt-app";
    rev = "v${version}";
    sha256 = "1z2mir4ib9xzxmy0daazzvlga41n80zch1xyp1iz98rrdsnvd1la";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ libtool ];
 
  hardeningDisable = [ "fortify" ];

  meta = with stdenv.lib; {
    description = "Command line utility for Atmel maXTouch devices";
    homepage = https://github.com/atmel-maxtouch/mxt-app;
    license = licenses.bsd2;
    maintainers = [ maintainers.colemickens ];
    platforms = platforms.linux;
  };
}