summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-07-03 20:50:15 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-07-03 20:50:15 -0700
commit93210648a8f0f2c4fdcebf0d5677f934fbb6ad33 (patch)
tree690388f986a63728d1921c63601bda53a377a499
parenta260b3d681164bedaeb90fd578390147799d638c (diff)
downloadnixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar.gz
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar.bz2
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar.lz
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar.xz
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.tar.zst
nixpkgs-93210648a8f0f2c4fdcebf0d5677f934fbb6ad33.zip
mxt-app: 1.27 -> 1.28
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mxt-app/versions.

Version release notes (from GitHub):
Changes since v1.27
- Added broken line test for sensors
- Added Sensor Variant Algorithm test for sensors
- Added .empty in m4 folder and removed mkdir in autogen.sh
- Fix mxt_convert_hex_test on 32 bit architectures
- Fixed uninitialized variable ctx->active_stylus
- Fixed extended config byte returning zeros
- Other minor fixes

These checks were done:

- built on NixOS
- /nix/store/1769xizqkbd8dd6llqy02rldci3pwijk-mxt-app-1.28/bin/mxt-app passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 1 of 1 passed binary check by having the new version present in output.
- found 1.28 with grep in /nix/store/1769xizqkbd8dd6llqy02rldci3pwijk-mxt-app-1.28
- directory tree listing: https://gist.github.com/fc84545295cbe4aa871675e481f9d678
- du listing: https://gist.github.com/3f8880133bd987a4e81d820e8ae6a5b4
-rw-r--r--pkgs/misc/mxt-app/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/mxt-app/default.nix b/pkgs/misc/mxt-app/default.nix
index 81300049203..c414b01422f 100644
--- a/pkgs/misc/mxt-app/default.nix
+++ b/pkgs/misc/mxt-app/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, autoreconfHook, libtool }:
 
 stdenv.mkDerivation rec{
-  version="1.27";
+  version="1.28";
   name = "mxt-app-${version}";
 
   src = fetchFromGitHub {
     owner = "atmel-maxtouch";
     repo = "mxt-app";
     rev = "v${version}";
-    sha256 = "0m1qxsdkwgajyd0sdw909l4w31csa26nw0xzr9ldddnvzb1va05h";
+    sha256 = "1z2mir4ib9xzxmy0daazzvlga41n80zch1xyp1iz98rrdsnvd1la";
   };
 
   nativeBuildInputs = [ autoreconfHook ];