freebsd.mkDerivation: remove with statements

This commit is contained in:
Philip Taron
2024-08-18 06:31:18 -07:00
parent 9062806b52
commit 7b3a3f3f8b
@@ -73,17 +73,14 @@ lib.makeOverridable (
strictDeps = true;
meta =
with lib;
{
maintainers = with maintainers; [
rhelmot
artemist
];
platforms = platforms.unix;
license = licenses.bsd2;
}
// attrs.meta or { };
meta = {
maintainers = with lib.maintainers; [
rhelmot
artemist
];
platforms = lib.platforms.unix;
license = lib.licenses.bsd2;
} // attrs.meta or { };
}
// lib.optionalAttrs stdenv'.hasCC {
# TODO should CC wrapper set this?