lol
1{ stdenv, fetchFromGitHub, makeWrapper, autoconf, automake, libtool }:
2
3stdenv.mkDerivation rec{
4 version="1.26";
5 name = "mxt-app-${version}";
6
7 src = fetchFromGitHub {
8 owner = "atmel-maxtouch";
9 repo = "mxt-app";
10 rev = "v${version}";
11 sha256 = "07afdgh8pnhgh2372cf5pqy6p7l6w3ing2hwnvz6db8wxw59n48h";
12 };
13
14 buildInputs = [ autoconf automake libtool ];
15 preConfigure = "./autogen.sh";
16
17 hardeningDisable = [ "fortify" ];
18
19 meta = with stdenv.lib; {
20 description = "Command line utility for Atmel maXTouch devices";
21 homepage = http://github.com/atmel-maxtouch/mxt-app;
22 license = licenses.bsd2;
23 maintainers = [ maintainers.colemickens ];
24 platforms = platforms.unix;
25 };
26}