source-engine/build.nix
2024-12-23 06:04:17 +03:00

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";
}