mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-12-08 18:11:07 +01:00
18 lines
455 B
Nix
18 lines
455 B
Nix
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ bash, coreutils, lib, nix, runCommand }:
|
|
|
|
runCommand
|
|
"nix-on-droid"
|
|
{
|
|
preferLocalBuild = true;
|
|
allowSubstitutes = false;
|
|
}
|
|
''
|
|
install -D -m755 ${./nix-on-droid.sh} $out/bin/nix-on-droid
|
|
|
|
substituteInPlace $out/bin/nix-on-droid \
|
|
--subst-var-by bash "${bash}" \
|
|
--subst-var-by coreutils "${coreutils}" \
|
|
--subst-var-by nix "${nix}"
|
|
''
|