hpp-fcl: avoid use of meta = with lib;

This commit is contained in:
Guilhem Saurel
2024-08-27 00:31:55 +02:00
parent 36b4ff0515
commit 90a6f86d47
+3 -3
View File
@@ -72,10 +72,10 @@ stdenv.mkDerivation (finalAttrs: {
moveToOutput share/${finalAttrs.pname} "$dev"
'';
meta = with lib; {
meta = {
description = "Extension of the Flexible Collision Library";
homepage = "https://github.com/humanoid-path-planner/hpp-fcl";
license = licenses.bsd3;
maintainers = with maintainers; [ nim65s ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nim65s ];
};
})