8 lines
244 B
Nix
8 lines
244 B
Nix
|
# Custom packages, that can be defined similarly to ones from nixpkgs
|
||
|
# You can build them using 'nix build .#example'
|
||
|
{pkgs, ...}: {
|
||
|
# pkgs
|
||
|
xash3d = pkgs.callPackage ./xash/xash3d.nix {};
|
||
|
hlsdk = pkgs.callPackage ./xash/hlsdk.nix {};
|
||
|
}
|