Skip to content

Instantly share code, notes, and snippets.

@dsilvasc
dsilvasc / bundle-macos.nix
Created September 6, 2023 14:22 — forked from elliot-u410/bundle-macos.nix
bundle-nix-macos.sh
{ pkgs }:
pkg:
pkgs.runCommand "bundle-${pkg.name}" {
nativeBuildInputs = with pkgs; [ coreutils which darwin.binutils darwin.sigtool ];
} ''
find '${pkg}/bin' -type f -executable -exec '${./bundle-macos.sh}' '{}' "$out" \;
''