gpxlab: migrate to by-name

This commit is contained in:
Nikolay Korotkiy
2024-11-24 15:37:51 +04:00
parent dc5f9d7ea9
commit bd4e8d2878
2 changed files with 11 additions and 6 deletions
@@ -1,8 +1,11 @@
{ stdenv, mkDerivation, lib, fetchFromGitHub
, qmake, qttools
{
stdenv,
lib,
fetchFromGitHub,
qt5,
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "gpxlab";
version = "0.7.0";
@@ -13,7 +16,11 @@ mkDerivation rec {
sha256 = "080vnwcciqblfrbfyz9gjhl2lqw1hkdpbgr5qfrlyglkd4ynjd84";
};
nativeBuildInputs = [ qmake qttools ];
nativeBuildInputs = [
qt5.qmake
qt5.qttools
qt5.wrapQtAppsHook
];
preConfigure = ''
lrelease GPXLab/locale/*.ts
-2
View File
@@ -14294,8 +14294,6 @@ with pkgs;
gpu-screen-recorder-gtk = callPackage ../applications/video/gpu-screen-recorder/gpu-screen-recorder-gtk.nix { };
gpxlab = libsForQt5.callPackage ../applications/misc/gpxlab { };
gpxsee-qt5 = libsForQt5.callPackage ../applications/misc/gpxsee { };
gpxsee-qt6 = qt6Packages.callPackage ../applications/misc/gpxsee { };