pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / deliantra / data.nix
blobca1cec266837195ed6f140cd70a74eb3852dc034
1 { lib, deliantra-maps, deliantra-arch, deliantra-server, symlinkJoin }:
3 symlinkJoin rec {
4   name = "deliantra-data-${version}";
5   version = "M${deliantra-maps.version}+A${deliantra-arch.version}";
7   paths = [
8     deliantra-maps
9     deliantra-arch
10     "${deliantra-server}/share/deliantra-server"
11   ];
13   meta = with lib; {
14     description = "Combined game data (maps + archetypes) for the Deliantra free MMORPG";
15     homepage = "http://www.deliantra.net/";
16     license = with licenses; [ gpl2Plus agpl3Plus ];
17     platforms = platforms.linux;
18     maintainers = with maintainers; [ ToxicFrog ];
19     hydraPlatforms = [];
20   };