diff --git a/pkgs/by-name/li/live-server/package.nix b/pkgs/by-name/li/live-server/package.nix index 8f8cd32cbde5..0429dfdfc32d 100644 --- a/pkgs/by-name/li/live-server/package.nix +++ b/pkgs/by-name/li/live-server/package.nix @@ -24,13 +24,13 @@ rustPlatform.buildRustPackage (finalAttrs: { buildInputs = [ openssl ]; - meta = with lib; { + meta = { description = "Local network server with live reload feature for static pages"; downloadPage = "https://github.com/lomirus/live-server/releases"; homepage = "https://github.com/lomirus/live-server"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "live-server"; - maintainers = [ maintainers.philiptaron ]; - platforms = platforms.unix; + maintainers = [ lib.maintainers.philiptaron ]; + platforms = lib.platforms.unix; }; })