7 lines
142 B
Nix
7 lines
142 B
Nix
|
{ stdenv, makeSetupHook }:
|
||
|
|
||
|
makeSetupHook {
|
||
|
name = "breakpoint-hook";
|
||
|
meta.broken = !stdenv.buildPlatform.isLinux;
|
||
|
} ./breakpoint-hook.sh
|