nixpkgs/pkgs/misc/mxt-app/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
678 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libtool }:
2016-01-17 12:11:09 +00:00
stdenv.mkDerivation rec {
2022-02-11 14:12:13 +00:00
version="1.36";
pname = "mxt-app";
2016-01-17 12:11:09 +00:00
src = fetchFromGitHub {
owner = "atmel-maxtouch";
repo = "mxt-app";
rev = "v${version}";
2022-02-11 14:12:13 +00:00
sha256 = "sha256-hS/4d7HUCoulY73Sn1+IAb/IWD4VDht78Tn2jdluzhU=";
2016-01-17 12:11:09 +00:00
};
2017-03-24 01:15:14 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libtool ];
2020-11-22 04:33:20 +00:00
hardeningDisable = [ "fortify" ];
2016-02-24 22:00:30 +00:00
meta = with lib; {
2016-01-17 12:11:09 +00:00
description = "Command line utility for Atmel maXTouch devices";
homepage = "https://github.com/atmel-maxtouch/mxt-app";
2016-01-17 12:11:09 +00:00
license = licenses.bsd2;
maintainers = [ maintainers.colemickens ];
platforms = platforms.linux;
2016-01-17 12:11:09 +00:00
};
}