tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pinocchio: remove "with lib;"
Guilhem Saurel
2 years ago
fa334d69
396d7e2e
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
pinocchio
default.nix
+4
-4
pkgs/development/libraries/pinocchio/default.nix
···
67
67
"pinocchio"
68
68
];
69
69
70
70
-
meta = with lib; {
70
70
+
meta = {
71
71
description = "A fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives";
72
72
homepage = "https://github.com/stack-of-tasks/pinocchio";
73
73
-
license = licenses.bsd2;
74
74
-
maintainers = with maintainers; [ nim65s wegank ];
75
75
-
platforms = platforms.unix;
73
73
+
license = lib.licenses.bsd2;
74
74
+
maintainers = with lib.maintainers; [ nim65s wegank ];
75
75
+
platforms = lib.platforms.unix;
76
76
};
77
77
})