Unverified Commit a93fbfd8 authored by Tom van Dijk's avatar Tom van Dijk
Browse files

live-server: remove `with lib;`

parent 31a3e7dc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;
  };
})