mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
commit
9aff9981a4
1 changed files with 6 additions and 6 deletions
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue