about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-06-02 21:06:00 +0200
committerGitHub <noreply@github.com>2021-06-02 21:06:00 +0200
commited8115ef5ba5f1ca565c1d303775249d59833998 (patch)
tree0e58442f7669be2d87213da234b466000fe671d9 /pkgs/tools/misc
parenta8e4f721aad4f52824e8d5e37b9d0cac71450e7d (diff)
parentc57b309d32d74e4f1e60d32d32c53a76aac89577 (diff)
downloadnixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar.gz
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar.bz2
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar.lz
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar.xz
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.tar.zst
nixlib-ed8115ef5ba5f1ca565c1d303775249d59833998.zip
Merge pull request #124992 from primeos/android-tools
android-tools: init at 31.0.0p1
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/android-tools/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/pkgs/tools/misc/android-tools/default.nix b/pkgs/tools/misc/android-tools/default.nix
new file mode 100644
index 000000000000..69a74e465c91
--- /dev/null
+++ b/pkgs/tools/misc/android-tools/default.nix
@@ -0,0 +1,46 @@
+{ lib, stdenv, fetchurl
+, cmake, perl, go
+, protobuf, zlib, gtest, brotli, lz4, zstd, libusb1, pcre2
+}:
+
+stdenv.mkDerivation rec {
+  pname = "android-tools";
+  version = "31.0.0p1";
+
+  src = fetchurl {
+    url = "https://github.com/nmeum/android-tools/releases/download/${version}/android-tools-${version}.tar.xz";
+    sha256 = "1dn7v10gdx1pi0pkddznd5sdz941qz0x4jww8h2mk50nbyxc792i";
+  };
+
+  nativeBuildInputs = [ cmake perl go ];
+  buildInputs = [ protobuf zlib gtest brotli lz4 zstd libusb1 pcre2 ];
+
+  # Don't try to fetch any Go modules via the network:
+  GOFLAGS = [ "-mod=vendor" ];
+
+  preConfigure = ''
+    export GOCACHE=$TMPDIR/go-cache
+  '';
+
+  meta = with lib; {
+    description = "Android SDK platform tools";
+    longDescription = ''
+      Android SDK Platform-Tools is a component for the Android SDK. It
+      includes tools that interface with the Android platform, such as adb and
+      fastboot. These tools are required for Android app development. They're
+      also needed if you want to unlock your device bootloader and flash it
+      with a new system image.
+      Currently the following tools are supported:
+      - adb
+      - fastboot
+      - mke2fs.android (required by fastboot)
+      - simg2img, img2simg, append2simg
+    '';
+    # https://developer.android.com/studio/command-line#tools-platform
+    # https://developer.android.com/studio/releases/platform-tools
+    homepage = "https://github.com/nmeum/android-tools";
+    license = with licenses; [ asl20 unicode-dfs-2015 ];
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ primeos ];
+  };
+}