mtdev: 1.1.6 -> 1.1.7

This commit is contained in:
Sergei Trofimovich 2024-04-06 22:03:47 +01:00
parent f6eb921406
commit f23aacbd5f
1 changed files with 13 additions and 3 deletions

View File

@ -1,16 +1,26 @@
{ lib, stdenv, fetchurl, evdev-proto }:
{ lib
, stdenv
, fetchurl
, evdev-proto
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "mtdev";
version = "1.1.6";
version = "1.1.7";
src = fetchurl {
url = "https://bitmath.org/code/mtdev/${pname}-${version}.tar.bz2";
sha256 = "1q700h9dqcm3zl6c3gj0qxxjcx6ibw2c51wjijydhwdcm26v5mqm";
hash = "sha256-oQetrSEB/srFSsf58OCg3RVdlUGT2lXCNAyX8v8dgU4=";
};
buildInputs = lib.optional stdenv.hostPlatform.isFreeBSD evdev-proto;
passthru.updateScript = gitUpdater {
url = "https://bitmath.org/git/mtdev.git";
rev-prefix = "v";
};
meta = with lib; {
homepage = "https://bitmath.org/code/mtdev/";
description = "Multitouch Protocol Translation Library";