live-server: remove with lib;

This commit is contained in:
Tom van Dijk
2025-06-15 15:02:40 +02:00
parent 31a3e7dc41
commit a93fbfd8f1
+4 -4
View File
@@ -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;
};
})