freebsd.mkDerivation: remove with statements
This commit is contained in:
@@ -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?
|
||||
|
||||
Reference in New Issue
Block a user