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