Unverified Commit 3cd0ff85 authored by Felix Schröter's avatar Felix Schröter
Browse files

mullvad-browser: remove with lib

parent cc1b18a1
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -296,12 +296,12 @@ stdenv.mkDerivation rec {
    };
  };

  meta = with lib; {
  meta = {
    description = "Privacy-focused browser made in a collaboration between The Tor Project and Mullvad";
    mainProgram = "mullvad-browser";
    homepage = "https://mullvad.net/en/browser";
    platforms = attrNames sources;
    maintainers = with maintainers; [
    platforms = lib.attrNames sources;
    maintainers = with lib.maintainers; [
      felschr
      panicgh
      sigmasquadron
@@ -309,12 +309,12 @@ stdenv.mkDerivation rec {
    # MPL2.0+, GPL+, &c.  While it's not entirely clear whether
    # the compound is "libre" in a strict sense (some components place certain
    # restrictions on redistribution), it's free enough for our purposes.
    license = with licenses; [
    license = with lib.licenses; [
      mpl20
      lgpl21Plus
      lgpl3Plus
      free
    ];
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
  };
}