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).
22 lines
646 B
Nix
22 lines
646 B
Nix
{ stdenv, lib, fetchurl, deliantra-maps, deliantra-arch, deliantra-server, symlinkJoin }:
|
|
|
|
symlinkJoin rec {
|
|
name = "deliantra-data-${version}";
|
|
version = "M${deliantra-maps.version}+A${deliantra-arch.version}";
|
|
|
|
paths = [
|
|
deliantra-maps
|
|
deliantra-arch
|
|
"${deliantra-server}/share/deliantra-server"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Combined game data (maps + archetypes) for the Deliantra free MMORPG";
|
|
homepage = "http://www.deliantra.net/";
|
|
license = with licenses; [ gpl2Plus agpl3Plus ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ ToxicFrog ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|