Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f186d66be2dc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 27d5f86bf865
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 17, 2020

  1. mxt-app: 1.28 -> 1.32

    r-ryantm authored and FRidh committed Dec 17, 2020
    Copy the full SHA
    27d5f86 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/misc/mxt-app/default.nix
6 changes: 3 additions & 3 deletions pkgs/misc/mxt-app/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, autoreconfHook, libtool }:

stdenv.mkDerivation rec {
version="1.28";
version="1.32";
pname = "mxt-app";

src = fetchFromGitHub {
owner = "atmel-maxtouch";
repo = "mxt-app";
rev = "v${version}";
sha256 = "1z2mir4ib9xzxmy0daazzvlga41n80zch1xyp1iz98rrdsnvd1la";
sha256 = "1z1g5h14j3yw3r9phgir33s9j07ns9c0r5lkl49940pzqycnrwbj";
};

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libtool ];

hardeningDisable = [ "fortify" ];

meta = with stdenv.lib; {