moosefs: remove "with lib;" in meta

This commit is contained in:
Markus Kowalewski
2024-10-03 17:29:36 +02:00
parent 8bfd0bc8e0
commit dc279152f2
+4 -4
View File
@@ -50,11 +50,11 @@ stdenv.mkDerivation rec {
passthru.tests = { inherit (nixosTests) moosefs; };
meta = with lib; {
meta = {
homepage = "https://moosefs.com";
description = "Open Source, Petabyte, Fault-Tolerant, Highly Performing, Scalable Network Distributed File System";
platforms = platforms.unix;
license = licenses.gpl2Only;
maintainers = with maintainers; [ mfossen markuskowa ];
platforms = lib.platforms.unix;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ mfossen markuskowa ];
};
}