tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pinocchio: patch for example-robot-data models
Guilhem Saurel
2 years ago
396d7e2e
2397b818
+8
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
pinocchio
default.nix
+8
pkgs/development/libraries/pinocchio/default.nix
reviewed
···
4
4
, cmake
5
5
, boost
6
6
, eigen
7
7
+
, example-robot-data
7
8
, collisionSupport ? !stdenv.isDarwin
8
9
, jrl-cmakemodules
9
10
, hpp-fcl
···
22
23
rev = "v${finalAttrs.version}";
23
24
hash = "sha256-Ks5dvKi5iutjM+iovDOYGx3vsr45JWRqGOXV8+Ko4gg=";
24
25
};
26
26
+
27
27
+
# example-robot-data models are used in checks.
28
28
+
# Upstream provide them as git submodule, but we can use our own version instead.
29
29
+
postPatch = ''
30
30
+
rmdir models/example-robot-data
31
31
+
ln -s ${example-robot-data.src} models/example-robot-data
32
32
+
'';
25
33
26
34
strictDeps = true;
27
35