ceph: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:15:36 -07:00
parent fada673a22
commit 6245f7868f
No known key found for this signature in database

View File

@ -138,11 +138,11 @@ let
none = [ ];
};
getMeta = description: with lib; {
getMeta = description: {
homepage = "https://ceph.io/en/";
inherit description;
license = with licenses; [ lgpl21 gpl2Only bsd3 mit publicDomain ];
maintainers = with maintainers; [ adev ak johanot krav ];
license = with lib.licenses; [ lgpl21 gpl2Only bsd3 mit publicDomain ];
maintainers = with lib.maintainers; [ adev ak johanot krav ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
};