11 lines
182 B
Nix
11 lines
182 B
Nix
|
|
{
|
||
|
|
setup-helper = {
|
||
|
|
preBuild = ''
|
||
|
|
substituteInPlace setup-helper.setup \
|
||
|
|
--replace "(chicken-home)" \"$out/share/\"
|
||
|
|
|
||
|
|
cat setup-helper.setup
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|