mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
proxsuite-nlp: init at 0.7.1 (#340476)
This commit is contained in:
commit
2312563178
48
pkgs/by-name/ei/eigenrand/package.nix
Normal file
48
pkgs/by-name/ei/eigenrand/package.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
cmake,
|
||||
eigen,
|
||||
fetchFromGitHub,
|
||||
gtest,
|
||||
lib,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "eigenrand";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bab2min";
|
||||
repo = "EigenRand";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-mrpkWIb6kfLvppmIfzhjF1/3m1zSd8XG1D07V6Zjlu0=";
|
||||
};
|
||||
|
||||
# Avoid downloading googletest: we already have it.
|
||||
postPatch = ''
|
||||
substituteInPlace CMakeLists.txt --replace-fail \
|
||||
"FetchContent_MakeAvailable(googletest)" \
|
||||
"add_subdirectory(${gtest.src} googletest SYSTEM)"
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
# Remove installed tests and googletest stuff
|
||||
rm -rf $out/bin $out/include/gmock $out/include/gtest $out/lib
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
propagatedBuildInputs = [ eigen ];
|
||||
checkInputs = [ gtest ];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
cmakeFlags = [ "-DCMAKE_CTEST_ARGUMENTS=--exclude-regex;EigenRand-test" ];
|
||||
|
||||
meta = {
|
||||
description = "Fastest Random Distribution Generator for Eigen";
|
||||
homepage = "https://github.com/bab2min/EigenRand";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ nim65s ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
95
pkgs/by-name/pr/proxsuite-nlp/package.nix
Normal file
95
pkgs/by-name/pr/proxsuite-nlp/package.nix
Normal file
@ -0,0 +1,95 @@
|
||||
{
|
||||
cmake,
|
||||
doxygen,
|
||||
eigenrand,
|
||||
example-robot-data,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
fmt,
|
||||
fontconfig,
|
||||
graphviz,
|
||||
lib,
|
||||
stdenv,
|
||||
pinocchio,
|
||||
pkg-config,
|
||||
proxsuite,
|
||||
python3Packages,
|
||||
pythonSupport ? false,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "proxsuite-nlp";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Simple-Robotics";
|
||||
repo = "proxsuite-nlp";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-aMTEjAu1ltjorx5vhz7klB0cGgdm+7STAPhi+NA6mnI=";
|
||||
};
|
||||
|
||||
outputs = [
|
||||
"doc"
|
||||
"out"
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Fix use of system jrl-cmakemodules
|
||||
# This patch was merged upstream and can be removed on next release
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Simple-Robotics/proxsuite-nlp/pull/106/commits/c653ab67860fdf7b53b1a919f0b8a7746eba016b.patch";
|
||||
hash = "sha256-Kw2obJGOWms/Lr4cVkLFpaLTickCq5WQyDVbwi8Bd58=";
|
||||
})
|
||||
# Fix use of system EigenRand
|
||||
# This patch was merged upstream and can be removed on next release
|
||||
(fetchpatch {
|
||||
url = "https://github.com/Simple-Robotics/proxsuite-nlp/pull/106/commits/25370417755f003708b5b2b81e253797e8d96928.patch";
|
||||
hash = "sha256-PKijVmttt5JakF3X/GiVWptncxHJUbs/aikgwgB5NME=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
doxygen
|
||||
graphviz
|
||||
pkg-config
|
||||
] ++ lib.optional pythonSupport python3Packages.pythonImportsCheckHook;
|
||||
checkInputs = [ eigenrand ] ++ lib.optional pythonSupport python3Packages.pytest;
|
||||
propagatedBuildInputs =
|
||||
[
|
||||
example-robot-data
|
||||
fmt
|
||||
]
|
||||
++ lib.optionals pythonSupport [
|
||||
python3Packages.pinocchio
|
||||
python3Packages.proxsuite
|
||||
]
|
||||
++ lib.optionals (!pythonSupport) [
|
||||
pinocchio
|
||||
proxsuite
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
(lib.cmakeBool "BUILD_PYTHON_INTERFACE" pythonSupport)
|
||||
(lib.cmakeBool "BUILD_WITH_PINOCCHIO_SUPPORT" true)
|
||||
(lib.cmakeBool "BUILD_WITH_PROXSUITE_SUPPORT" true)
|
||||
];
|
||||
|
||||
# Fontconfig error: Cannot load default config file: No such file: (null)
|
||||
env.FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
|
||||
|
||||
# Fontconfig error: No writable cache directories
|
||||
preBuild = "export XDG_CACHE_HOME=$(mktemp -d)";
|
||||
|
||||
doCheck = true;
|
||||
pythonImportsCheck = [ "proxsuite_nlp" ];
|
||||
|
||||
meta = {
|
||||
description = "Primal-dual augmented Lagrangian solver for nonlinear programming on manifolds";
|
||||
homepage = "https://github.com/Simple-Robotics/proxsuite-nlp";
|
||||
changelog = "https://github.com/Simple-Robotics/proxsuite-nlp/blob/v${finalAttrs.version}/CHANGELOG.md";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ nim65s ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
@ -10039,6 +10039,8 @@ self: super: with self; {
|
||||
|
||||
proxsuite = toPythonModule (pkgs.proxsuite.override { pythonSupport = true; python3Packages = self; });
|
||||
|
||||
proxsuite-nlp = toPythonModule (pkgs.proxsuite-nlp.override { pythonSupport = true; python3Packages = self; });
|
||||
|
||||
proxy-tools = callPackage ../development/python-modules/proxy-tools { };
|
||||
|
||||
proxy-db = callPackage ../development/python-modules/proxy-db { };
|
||||
|
Loading…
Reference in New Issue
Block a user