3
0
Fork 0
forked from mirrors/nixpkgs

androidenv: Better platform conditionals

This commit is contained in:
John Ericson 2018-02-20 18:31:16 -05:00
parent fe5ae8b550
commit 7748972763
4 changed files with 23 additions and 10 deletions

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
phases = "buildPhase";
buildInputs = [ p7zip makeWrapper ];
nativeBuildInputs = [ p7zip makeWrapper ];
buildCommand = let
bin_path = "$out/bin";

View file

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
phases = "buildPhase";
buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];
buildCommand = let
bin_path = "$out/bin";

View file

@ -1,8 +1,10 @@
{pkgs, pkgs_i686, includeSources ? true}:
{ buildPackages, pkgs, pkgs_i686, targetPackages
, includeSources ? true
}:
rec {
platformTools = import ./platform-tools.nix {
inherit (pkgs) stdenv fetchurl unzip zlib;
inherit buildPackages pkgs;
};
buildTools = import ./build-tools.nix {
@ -214,14 +216,20 @@ rec {
};
androidndk = import ./androidndk.nix {
inherit (pkgs) stdenv fetchurl zlib ncurses p7zip lib makeWrapper;
inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which;
inherit (buildPackages)
p7zip makeWrapper;
inherit (pkgs)
stdenv fetchurl zlib ncurses lib
coreutils file findutils gawk gnugrep gnused jdk which;
inherit platformTools;
};
androidndk_r8e = import ./androidndk_r8e.nix {
inherit (pkgs) stdenv fetchurl zlib ncurses lib makeWrapper;
inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which;
inherit (buildPackages)
makeWrapper;
inherit (pkgs)
stdenv fetchurl zlib ncurses lib
coreutils file findutils gawk gnugrep gnused jdk which;
inherit platformTools;
};

View file

@ -1,4 +1,9 @@
{stdenv, zlib, fetchurl, unzip}:
{ buildPackages, pkgs }:
let
inherit (buildPackages) fetchurl unzip;
inherit (pkgs) stdenv zlib;
in
stdenv.mkDerivation rec {
version = "26.0.2";
@ -42,5 +47,5 @@ stdenv.mkDerivation rec {
done
'';
buildInputs = [ unzip ];
nativeBuildInputs = [ unzip ];
}