Commit fa334d69 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

pinocchio: remove "with lib;"

parent 396d7e2e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -67,11 +67,11 @@ stdenv.mkDerivation (finalAttrs: {
    "pinocchio"
  ];

  meta = with lib; {
  meta = {
    description = "A fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives";
    homepage = "https://github.com/stack-of-tasks/pinocchio";
    license = licenses.bsd2;
    maintainers = with maintainers; [ nim65s wegank ];
    platforms = platforms.unix;
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ nim65s wegank ];
    platforms = lib.platforms.unix;
  };
})