mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
c5d61a5e93
Includes deliantra-arch, deliantra-maps, and deliantra-data (a combined package that includes the compiled archetypes and maps and the static data shipped with the server itself).
11 lines
280 B
Nix
11 lines
280 B
Nix
pkgs:
|
|
|
|
let
|
|
callPackage = pkgs.callPackage;
|
|
in {
|
|
deliantra-server = callPackage ./deliantra-server.nix {};
|
|
deliantra-arch = callPackage ./deliantra-arch.nix {};
|
|
deliantra-maps = callPackage ./deliantra-maps.nix {};
|
|
deliantra-data = callPackage ./deliantra-data.nix {};
|
|
}
|