mxt-app:1.26 -> 1.27

This commit is contained in:
ndowens 2017-03-23 20:15:14 -05:00
parent f45cf10f6e
commit 9512f6bb94

View file

@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, makeWrapper, autoconf, automake, libtool }:
{ stdenv, fetchFromGitHub, autoreconfHook, libtool }:
stdenv.mkDerivation rec{
version="1.26";
version="1.27";
name = "mxt-app-${version}";
src = fetchFromGitHub {
owner = "atmel-maxtouch";
repo = "mxt-app";
rev = "v${version}";
sha256 = "07afdgh8pnhgh2372cf5pqy6p7l6w3ing2hwnvz6db8wxw59n48h";
sha256 = "0m1qxsdkwgajyd0sdw909l4w31csa26nw0xzr9ldddnvzb1va05h";
};
buildInputs = [ autoconf automake libtool ];
preConfigure = "./autogen.sh";
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libtool ];
hardeningDisable = [ "fortify" ];
meta = with stdenv.lib; {