mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
9 lines
264 B
Nix
9 lines
264 B
Nix
# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ config, runCommand, zip, bootstrap }:
|
|
|
|
runCommand "bootstrap-zip" { } ''
|
|
mkdir $out
|
|
cd ${bootstrap}
|
|
${zip}/bin/zip -q -9 -r $out/bootstrap-${config.build.arch} ./* ./.l2s
|
|
''
|