mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
34 lines
721 B
Nix
34 lines
721 B
Nix
|
{
|
||
|
stdenv,
|
||
|
lib,
|
||
|
fetchurl,
|
||
|
deliantra-server,
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "deliantra-maps";
|
||
|
version = "3.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://dist.schmorp.de/deliantra/${pname}-${version}.tar.xz";
|
||
|
sha256 = "0zbwzya28s1xpnbrmqkqvfrzns03zdjd8a9w9nk665aif6rw2zbz";
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p "$out/maps"
|
||
|
export DELIANTRA_DATADIR="$out"
|
||
|
${deliantra-server}/bin/cfutil --install-maps .
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Map data for the Deliantra free MMORPG";
|
||
|
homepage = "http://www.deliantra.net/";
|
||
|
license = with licenses; [
|
||
|
gpl2Plus
|
||
|
agpl3Plus
|
||
|
];
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ ToxicFrog ];
|
||
|
};
|
||
|
}
|