Unverified Commit f472aa78 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

google-play: 1.6.3 -> 1.7.4 (#404544)

parents b4d85198 1349532a
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -2,17 +2,18 @@
  lib,
  fetchFromGitHub,
  buildGoModule,
  nix-update-script,
}:

buildGoModule rec {
  pname = "google-play";
  version = "1.6.3";
  version = "1.7.4";

  src = fetchFromGitHub {
    owner = "3052";
    repo = "google";
    rev = "v${version}";
    hash = "sha256-Wf7k76TXBr10FIclo/Ny8MLDDSNXu54JTDS0vfw4UXA=";
    owner = "UlyssesZh";
    repo = "google-play";
    tag = "v${version}";
    hash = "sha256-Qv79fM59AQ+Y0OfWXKW1Jub07J5net3pP8ANm7CtB6A=";
  };

  subPackages = [
@@ -20,14 +21,16 @@ buildGoModule rec {
    "internal/badging"
  ];

  vendorHash = "sha256-NVN5qoGXiL6lOPZejUhK55EuzF7R0KsIT+2oCzK+Qg0=";
  vendorHash = "sha256-+n08a22VEHjKUyk/XxTXBu9yYggSgIxCFx8PFtA2OCc=";

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "CLI app to download APK from Google Play or send API requests";
    maintainers = with lib.maintainers; [ ulysseszhan ];
    # https://polyformproject.org/licenses/noncommercial/1.0.0
    license = lib.licenses.unfree;
    homepage = "https://github.com/3052/google";
    homepage = "https://github.com/UlyssesZh/google-play";
    mainProgram = "play";
    platforms = lib.platforms.unix;
  };