87 lines
2.6 KiB
Nix
87 lines
2.6 KiB
Nix
# This is the Android Asset Packaging Tool(AAPT2).
|
|
# It is used by Gradle to package Android app resources.
|
|
# See: https://developer.android.com/studio/command-line/aapt2
|
|
|
|
{ lib, stdenv, pkgs, fetchurl }:
|
|
|
|
let
|
|
inherit (lib) getAttr optionals;
|
|
inherit (stdenv) isLinux isDarwin;
|
|
|
|
pname = "aapt2";
|
|
# Warning: This must be the same as gradlePluginVersion android/gradle.properties
|
|
version = "3.5.4-6197926";
|
|
|
|
pkgPath = "com/android/tools/build/aapt2";
|
|
repoUrl = "https://dl.google.com/dl/android/maven2";
|
|
|
|
platform =
|
|
if isLinux then "linux" else
|
|
if isDarwin then "osx" else
|
|
throw "Unknown platform!";
|
|
|
|
filenames = {
|
|
jar = "${pname}-${version}-${platform}.jar";
|
|
pom = "${pname}-${version}.pom";
|
|
};
|
|
|
|
urls = {
|
|
jar = fetchurl {
|
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}";
|
|
sha256 = getAttr platform {
|
|
linux = "0hrlbxdn6bkl6qr9y599mjs0dy72q0352j30vpkza4lbq5b7rj9v";
|
|
osx = "0hhvxyr0jxci01qqkcrn80h4qs3b43lqxpbss0xvrkd1nwdilmnb";
|
|
};
|
|
};
|
|
sha = fetchurl {
|
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.jar}.sha1";
|
|
sha256 = getAttr platform {
|
|
linux = "0ipmkl911hf17g2pb39jjkwrbb07p0cd1qd10p2fl8d1icxf63sz";
|
|
osx = "156jbw4xm43902c0cqrag9l1s3fg6i1irsdz8m8659i9530ywwpx";
|
|
};
|
|
};
|
|
pom = fetchurl {
|
|
url = "${repoUrl}/${pkgPath}/${version}/${filenames.pom}";
|
|
sha256 = "00ra1xz4x1sfcf0z6x9in3b1flpyvxjbhpvhacc32r8b58nfvqzp";
|
|
};
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
srcs = with urls; [ jar sha pom ];
|
|
phases = [ "unpackPhase" ]
|
|
++ optionals isLinux [ "patchPhase" ]; # OSX binaries don't need patchelf
|
|
buildInputs = with pkgs; [ zip unzip patchelf ];
|
|
|
|
unpackPhase = ''
|
|
mkdir -p $out
|
|
for src in $srcs; do
|
|
filename=$(stripHash $src)
|
|
cp $src $out/$filename
|
|
done
|
|
'';
|
|
|
|
# On Linux, we need to patch the interpreter in Java packages
|
|
# that contain native executables to use Nix's interpreter instead.
|
|
patchPhase = ''
|
|
# We need an stdenv with a compiler
|
|
[[ -n "$NIX_CC" ]] || exit 1
|
|
|
|
# Patch executables from maven dependency to use Nix's interpreter
|
|
tmpDir=$(mktemp -d)
|
|
unzip $out/${filenames.jar} -d $tmpDir
|
|
for exe in `find $tmpDir/ -type f -executable`; do
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $exe
|
|
done
|
|
|
|
# Rebuild the .jar file with patched binaries
|
|
pushd $tmpDir > /dev/null
|
|
chmod u+w $out/${filenames.jar}
|
|
zip -fr $out/${filenames.jar}
|
|
chmod $out/${filenames.jar} --reference=$out/${filenames.jar}.sha1
|
|
popd > /dev/null
|
|
rm -rf $tmpDir
|
|
'';
|
|
}
|