aligator: 0.13.0 -> 0.14.0

ref. https://github.com/Simple-Robotics/aligator/blob/main/CHANGELOG.md#0140---2025-05-07

drop pinocchio 2 support, but we have 3
drop proxsuite-nlp dependency, done
This commit is contained in:
Guilhem Saurel
2025-05-12 18:28:32 +02:00
parent fb21d6c0ed
commit c930de820e
+2 -5
View File
@@ -21,7 +21,6 @@
suitesparse,
crocoddyl,
pinocchio,
proxsuite-nlp,
# checkInputs
gbenchmark,
@@ -29,13 +28,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "aligator";
version = "0.13.0";
version = "0.14.0";
src = fetchFromGitHub {
owner = "Simple-Robotics";
repo = "aligator";
tag = "v${finalAttrs.version}";
hash = "sha256-i+NQzhYdHQ+KcNxSLELgnMk98mdfN/vbXfRlU3k/dUU=";
hash = "sha256-SkhFV/a3A6BqzoicQa7MUgsEuDzd+JfgYvL4ztHg/K0=";
};
outputs = [
@@ -67,12 +66,10 @@ stdenv.mkDerivation (finalAttrs: {
python3Packages.crocoddyl
python3Packages.matplotlib
python3Packages.pinocchio
python3Packages.proxsuite-nlp
]
++ lib.optionals (!pythonSupport) [
crocoddyl
pinocchio
proxsuite-nlp
];
checkInputs =
[ gbenchmark ]