folly: remove with lib;

(cherry picked from commit fbb9ab5079)
(cherry picked from commit 5705b45c48ac661106df502d0cb8d41596d65386)
This commit is contained in:
Emily
2024-11-30 15:11:12 +01:00
committed by Vladimír Čunát
parent 70ab289cf6
commit bfba0d1825
+3 -3
View File
@@ -112,10 +112,10 @@ stdenv.mkDerivation (finalAttrs: {
};
};
meta = with lib; {
meta = {
description = "Open-source C++ library developed and used at Facebook";
homepage = "https://github.com/facebook/folly";
license = licenses.asl20;
license = lib.licenses.asl20;
# 32bit is not supported: https://github.com/facebook/folly/issues/103
platforms = [
"x86_64-linux"
@@ -123,7 +123,7 @@ stdenv.mkDerivation (finalAttrs: {
"aarch64-darwin"
"aarch64-linux"
];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
abbradar
pierreis
];