mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-03-13 06:01:53 +00:00
17 lines
302 B
Nix
17 lines
302 B
Nix
{ callPackage
|
|
, symlinkJoin
|
|
, hl2-unwrapped ? callPackage ./hl2-unwrapped.nix { }
|
|
, hl2-wrapper ? callPackage ./hl2-wrapper.nix { inherit hl2-unwrapped; }
|
|
}:
|
|
|
|
symlinkJoin {
|
|
name = "hl2";
|
|
|
|
paths = [
|
|
hl2-unwrapped
|
|
hl2-wrapper
|
|
];
|
|
|
|
postBuild = "ln -s $out/bin/hl2-wrapper $out/bin/hl2";
|
|
}
|