charles: 4.6.1 -> 4.6.2 (#129863)

* charles: 4.6.1 -> 4.6.2

* Update pkgs/applications/networking/charles/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Fabian Affolter 2021-07-12 04:29:09 +02:00 committed by GitHub
parent fae510fe05
commit 05996b61f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ { lib
lib, stdenv , stdenv
, makeWrapper , makeWrapper
, makeDesktopItem , makeDesktopItem
, fetchurl , fetchurl
@ -49,16 +49,16 @@ let
meta = with lib; { meta = with lib; {
description = "Web Debugging Proxy"; description = "Web Debugging Proxy";
homepage = "https://www.charlesproxy.com/"; homepage = "https://www.charlesproxy.com/";
maintainers = [ maintainers.kalbasit ]; maintainers = with maintainers; [ kalbasit ];
license = lib.licenses.unfree; license = licenses.unfree;
platforms = lib.platforms.linux ++ lib.platforms.darwin; platforms = platforms.unix;
}; };
}; };
in { in {
charles4 = (generic { charles4 = (generic {
version = "4.6.1"; version = "4.6.2";
sha256 = "1kl83jjj5wjhdpj34gcj04vf1asxlqlfx9zi91ln4v90swlaaclv"; sha256 = "0r5rann7cq665ih0pa66k52081gylk85ashrwq1khbv2jf80yy52";
platform = "_amd64"; platform = "_amd64";
jdk = jdk11; jdk = jdk11;
}); });
@ -68,4 +68,3 @@ in {
jdk = jdk8.jre; jdk = jdk8.jre;
}); });
} }