mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
12 lines
326 B
Nix
12 lines
326 B
Nix
# Copyright (c) 2019-2024, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ lib, runCommand, zip, bootstrap, targetSystem }:
|
|
|
|
let
|
|
arch = lib.strings.removeSuffix "-linux" targetSystem;
|
|
in
|
|
runCommand "bootstrap-zip" { } ''
|
|
mkdir $out
|
|
cd ${bootstrap}
|
|
${zip}/bin/zip -q -9 -r $out/bootstrap-${arch} ./* ./.l2s
|
|
''
|