From dc279152f21368d13524315be801e6d1e8689d02 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Thu, 3 Oct 2024 17:29:36 +0200 Subject: [PATCH] moosefs: remove "with lib;" in meta --- pkgs/tools/filesystems/moosefs/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/filesystems/moosefs/default.nix b/pkgs/tools/filesystems/moosefs/default.nix index 4911866fb4c7..7272e3e4811e 100644 --- a/pkgs/tools/filesystems/moosefs/default.nix +++ b/pkgs/tools/filesystems/moosefs/default.nix @@ -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 ]; }; }