evtest-qt: use qt5's mkDerivation

See #65399

authored by

Alex Rice and committed by
worldofpeace
fe213736 a35400ff

+3 -3
+3 -3
pkgs/applications/misc/evtest-qt/default.nix
··· 1 - { stdenv, qtbase, cmake, fetchFromGitHub }: 1 + { mkDerivation, lib, qtbase, cmake, fetchFromGitHub }: 2 2 3 - stdenv.mkDerivation rec { 3 + mkDerivation rec { 4 4 pname = "evtest-qt"; 5 5 version = "0.2.0"; 6 6 ··· 15 15 16 16 buildInputs = [ qtbase ]; 17 17 18 - meta = with stdenv.lib; { 18 + meta = with lib; { 19 19 description = "Simple input device tester for linux with Qt GUI"; 20 20 homepage = "https://github.com/Grumbel/evtest-qt"; 21 21 maintainers = with maintainers; [ alexarice ];