mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
google-play: init at 1.5.8 (#349627)
This commit is contained in:
commit
7208ddbb7a
34
pkgs/by-name/go/google-play/package.nix
Normal file
34
pkgs/by-name/go/google-play/package.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildGoModule,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "google-play";
|
||||
version = "1.5.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "3052";
|
||||
repo = "google";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-viAqy/vFbkzW45oCUd3kvkR/8BzPYe/XdPJEpeSmcY0=";
|
||||
};
|
||||
|
||||
subPackages = [
|
||||
"internal/play"
|
||||
"internal/badging"
|
||||
];
|
||||
|
||||
vendorHash = "sha256-C04/LcTcXaVzl74cTJBIZT+1mBw+cmOT8TllWIm4Jt4=";
|
||||
|
||||
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";
|
||||
mainProgram = "play";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user