veikk-linux-driver-gui: init at 2.0

Add configuration utility to configure VEIKK brand digitizers
master
Nicolás Kennedy 2021-06-05 15:07:37 -07:00
parent 7935dbda8a
commit 19f80f0d32
No known key found for this signature in database
GPG Key ID: C061089EFEBF7A35
3 changed files with 44 additions and 0 deletions

View File

@ -7261,6 +7261,16 @@
githubId = 10180857;
name = "Anmol Sethi";
};
nicbk = {
email = "nicolas@nicbk.com";
github = "nicbk";
githubId = 77309427;
name = "Nicolás Kennedy";
keys = [{
longkeyid = "rsa4096/0xC061089EFEBF7A35";
fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35";
}];
};
nichtsfrei = {
email = "philipp.eder@posteo.net";
github = "nichtsfrei";

View File

@ -0,0 +1,32 @@
{ lib, mkDerivation, fetchFromGitHub, gnumake, qmake }:
mkDerivation rec {
name = "veikk-linux-driver-gui";
version = "2.0";
src = fetchFromGitHub {
owner = "jlam55555";
repo = name;
rev = "v${version}";
sha256 = "02g1q79kwjlzg95w38a1d7nxvcry8xcsvhax2js4c7xqvzhkki5j";
};
nativeBuildInputs = [ qmake ];
postBuild = ''
make all clean
'';
installPhase = ''
mkdir -p $out/bin
cp veikk-linux-driver-gui $out/bin
'';
meta = with lib; {
description = "Configuration tool for the VEIKK Linux driver";
homepage = "https://github.com/jlam55555/veikk-linux-driver-gui/";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ nicbk ];
};
}

View File

@ -870,6 +870,8 @@ in
tnat64 = callPackage ../tools/networking/tnat64 { };
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
xcd = callPackage ../tools/misc/xcd { };
xtrt = callPackage ../tools/archivers/xtrt { };