From c78c366c0b08bbd5a99ef60fa037c1b5f5d3c760 Mon Sep 17 00:00:00 2001 From: Oskar Philipsson Date: Mon, 18 Aug 2025 22:14:47 +0200 Subject: [PATCH] rtklib-ex: init at 2.5.0 Co-authored-by: Wolfgang Walther --- pkgs/by-name/rt/rtklib-ex/package.nix | 54 +++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 pkgs/by-name/rt/rtklib-ex/package.nix diff --git a/pkgs/by-name/rt/rtklib-ex/package.nix b/pkgs/by-name/rt/rtklib-ex/package.nix new file mode 100644 index 000000000000..f996f266b3ea --- /dev/null +++ b/pkgs/by-name/rt/rtklib-ex/package.nix @@ -0,0 +1,54 @@ +{ + stdenv, + cmake, + nix-update-script, + blas, + lapack, + lib, + fetchFromGitHub, + qt6, +}: + +stdenv.mkDerivation rec { + pname = "rtklib-ex"; + version = "2.5.0"; + + src = fetchFromGitHub { + owner = "rtklibexplorer"; + repo = "RTKLIB"; + tag = "v${version}"; + hash = "sha256-j00VEQvxOiAc3EQX3x2b3RxYkbtvCZ17ugnW6b6ChWU="; + }; + + nativeBuildInputs = [ + cmake + blas + lapack + qt6.wrapQtAppsHook + qt6.qttools + ]; + + buildInputs = [ + qt6.qtbase + qt6.qtserialport + ]; + + doCheck = true; + + cmakeFlags = [ + (lib.cmakeFeature "CMAKE_INSTALL_DATAROOTDIR" "${placeholder "out"}/share") + ]; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = { + description = "Open Source Program Package for GNSS Positioning"; + homepage = "https://rtkexplorer.com"; + changelog = "https://github.com/rtklibexplorer/RTKLIB/releases/tag/${src.tag}"; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.skaphi ]; + platforms = lib.platforms.linux; + }; +}