tipp10: remove overuse of with lib;

This commit is contained in:
Sigmanificient 2024-07-26 01:18:32 +02:00
parent 3272a7c601
commit b2a6f0d22f

View File

@ -15,12 +15,12 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake qttools wrapQtAppsHook ];
buildInputs = [ qtmultimedia ];
meta = with lib; {
meta = {
description = "Learn and train typing with the ten-finger system";
mainProgram = "tipp10";
homepage = "https://gitlab.com/tipp10/tipp10";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sigmanificient ];
platforms = platforms.all;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ sigmanificient ];
platforms = lib.platforms.all;
};
}