depot/third_party/nixpkgs/pkgs/misc/mxt-app/default.nix
Default email b6f2ab0a42 Project import generated by Copybara.
GitOrigin-RevId: 253aecf69ed7595aaefabde779aa6449195bebb7
2021-08-18 15:19:15 +02:00

26 lines
678 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:
stdenv.mkDerivation rec {
version="1.33";
pname = "mxt-app";
src = fetchFromGitHub {
owner = "atmel-maxtouch";
repo = "mxt-app";
rev = "v${version}";
sha256 = "sha256-PgIIxoyR7UA5y4UZ6meJERrbi1Bov03pJkN5St4BWss=";
};
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;
};
}