-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nix
More file actions
49 lines (45 loc) · 1.12 KB
/
Copy pathpackage.nix
File metadata and controls
49 lines (45 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
pkgs,
lib,
...
}:
lib.buildGradleApkGradle2Nix {
pname = "fossify-thankyou";
version = "1.3.0";
src = pkgs.fetchFromGitHub {
owner = "FossifyOrg";
repo = "Thank-You";
tag = "1.3.0";
hash = "sha256-FaXEPRYI6V/3clF3+xxx7PgoEXRmQZm4ESylpnKkM4s=";
};
androidSdkPackages =
sdkPkgs: with sdkPkgs; [
build-tools-35-0-0
build-tools-36-0-0
cmdline-tools-latest
platform-tools
platforms-android-36
];
gradleTask = "assembleFossRelease";
# per-app lock generated by the gradle2nix CLI (see docs/adding-new-app)
lockFile = ./gradle.lock;
apkPath = "app/build/outputs/apk/foss/release/thankyou-10-foss-release-unsigned.apk";
meta = {
description = "Community info app of the Fossify project, without ads";
homepage = "https://fossify.org";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ osbm ];
android = {
minSdk = 26;
targetSdk = 36;
applicationId = "org.fossify.thankyou";
versionCode = 10;
abis = [
"armeabi-v7a"
"arm64-v8a"
"x86"
"x86_64"
];
};
};
}