Unverified Commit 7abce42d authored by Sefa Eyeoglu's avatar Sefa Eyeoglu
Browse files

unbound: remove with lib

parent 96fa7dae
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -218,11 +218,11 @@ stdenv.mkDerivation (finalAttrs: {
    };
  };

  meta = with lib; {
  meta = {
    description = "Validating, recursive, and caching DNS resolver";
    license = licenses.bsd3;
    license = lib.licenses.bsd3;
    homepage = "https://www.unbound.net";
    maintainers = with lib.maintainers; [ Scrumplex ];
    platforms = platforms.unix ++ platforms.windows;
    platforms = with lib.platforms; unix ++ windows;
  };
})