mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
17 lines
239 B
Nix
17 lines
239 B
Nix
{
|
|
symlinkJoin,
|
|
foo,
|
|
bar,
|
|
hello-unwrapped,
|
|
}:
|
|
symlinkJoin {
|
|
name = "hello-wrapped";
|
|
paths = [ hello-unwrapped ];
|
|
postBuild = ''
|
|
ln -s $out/bin/hello $out/bin/hello-wrapped
|
|
'';
|
|
|
|
passthru = {
|
|
inherit foo bar;
|
|
};
|
|
}
|