19 lines
265 B
Nix
19 lines
265 B
Nix
{
|
|
foot,
|
|
symlinkJoin,
|
|
makeWrapper,
|
|
}:
|
|
symlinkJoin {
|
|
name = "foot";
|
|
paths = [
|
|
foot
|
|
];
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/foot \
|
|
--add-flags "--config" \
|
|
--add-flags ${./foot.ini}
|
|
'';
|
|
}
|