Commit dc279152 authored by Markus Kowalewski's avatar Markus Kowalewski
Browse files

moosefs: remove "with lib;" in meta

parent 8bfd0bc8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 ];
  };
}