mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 01:54:34 +00:00
13 lines
189 B
Nix
13 lines
189 B
Nix
![]() |
{ lib, callPackage }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
buildOpenRAEngine = callPackage ./build-engine.nix {};
|
||
|
in
|
||
|
{
|
||
|
engines = {
|
||
|
release = buildOpenRAEngine (callPackage ./engines/release {});
|
||
|
};
|
||
|
}
|