nerdctl: remove nested with in meta

authored by superherointj and committed by GitHub 9f5332c8 9ee62aba

+4 -4
+4 -4
pkgs/applications/networking/cluster/nerdctl/default.nix
··· 48 48 runHook postInstallCheck 49 49 ''; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 homepage = "https://github.com/containerd/nerdctl/"; 53 53 changelog = "https://github.com/containerd/nerdctl/releases/tag/v${version}"; 54 54 description = "A Docker-compatible CLI for containerd"; 55 55 mainProgram = "nerdctl"; 56 - license = licenses.asl20; 57 - maintainers = with maintainers; [ jk developer-guy ]; 58 - platforms = platforms.linux; 56 + license = lib.licenses.asl20; 57 + maintainers = with lib.maintainers; [ developer-guy jk ]; 58 + platforms = lib.platforms.linux; 59 59 }; 60 60 }