mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
13 lines
328 B
Nix
13 lines
328 B
Nix
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ callPackage, tallocStatic }:
|
|
|
|
let
|
|
pkgsCross = callPackage ./cross-pkgs.nix { };
|
|
stdenv = pkgsCross.stdenvAdapters.makeStaticBinaries pkgsCross.stdenv;
|
|
in
|
|
|
|
pkgsCross.callPackage ../proot-termux {
|
|
talloc = tallocStatic;
|
|
inherit stdenv;
|
|
}
|