Unverified Commit 7836a555 authored by Sizhe Zhao's avatar Sizhe Zhao
Browse files

dqlite: avoid with lib;

parent aec172c0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,14 +47,14 @@ stdenv.mkDerivation (finalAttrs: {
    inherit lxd-lts;
  };

  meta = with lib; {
  meta = {
    description = ''
      Expose a SQLite database over the network and replicate it across a
      cluster of peers
    '';
    homepage = "https://dqlite.io/";
    license = licenses.asl20;
    license = lib.licenses.asl20;
    maintainers = [ ];
    platforms = platforms.linux;
    platforms = lib.platforms.linux;
  };
})