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




                             
                                                                    

    

                                         
 
                                   
 
                    
                                                                    
                                                           

                                              
                                

    
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:

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

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

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ libtool ];

  hardeningDisable = [ "fortify" ];

  meta = with 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;
  };
}