Merge pull request #294742 from loco-choco/sophus-init

sophus: init at 1.22.10
This commit is contained in:
Sandro
2024-03-11 00:37:21 +01:00
committed by GitHub
+41
View File
@@ -0,0 +1,41 @@
{ lib
, stdenv
, eigen
, fmt
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
pname = "sophus";
version = "1.22.10";
src = fetchFromGitHub {
owner = "strasdat";
repo = "Sophus";
rev = finalAttrs.version;
hash = "sha256-TNuUoL9r1s+kGE4tCOGFGTDv1sLaHJDUKa6c9x41Z7w=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
eigen
fmt
];
cmakeFlags = [
(lib.cmakeBool "BUILD_SOPHUS_TESTS" false)
(lib.cmakeBool "BUILD_SOPHUS_EXAMPLES" false)
];
meta = {
description = "C++ implementation of Lie Groups using Eigen";
homepage = "https://github.com/strasdat/Sophus";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ locochoco acowley ];
platforms = lib.platforms.all;
};
})