c643c86035
- `adb` is now 64 bit. Linking against 64 bit libraries. - Added `.lib` or `.out` postfix for 32 bit library packages. - Some libraries are reside in `lib64` instead of `lib`. - Other version bumps.
19 lines
371 B
Nix
19 lines
371 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "23.2.1";
|
|
name = "android-support-r${version}";
|
|
src = fetchurl {
|
|
url = "https://dl.google.com/android/repository/support_r${version}.zip";
|
|
sha1 = "azl7hgps1k98kmbhw45wwbrc86y1n4j1";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cd $out
|
|
unzip $src
|
|
'';
|
|
|
|
buildInputs = [ unzip ];
|
|
}
|