nix-on-droid/pkgs/bootstrap-zip.nix
2024-06-30 20:29:37 +02:00

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
''