rtklib-ex: init at 2.5.0 (#434823)
This commit is contained in:
commit
33d2b84d90
@ -23687,6 +23687,12 @@
|
||||
githubId = 158321;
|
||||
name = "Stewart Mackenzie";
|
||||
};
|
||||
skaphi = {
|
||||
name = "Oskar Philipsson";
|
||||
email = "oskar.philipsson@gmail.com";
|
||||
github = "skaphi";
|
||||
githubId = 41991455;
|
||||
};
|
||||
skeuchel = {
|
||||
name = "Steven Keuchel";
|
||||
email = "steven.keuchel@gmail.com";
|
||||
|
54
pkgs/by-name/rt/rtklib-ex/package.nix
Normal file
54
pkgs/by-name/rt/rtklib-ex/package.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user