mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
28 lines
612 B
Nix
28 lines
612 B
Nix
|
{ stdenv, lib, fetchsvn,
|
||
|
version, rev, sha256 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "crossfire-maps";
|
||
|
version = "r${toString rev}";
|
||
|
|
||
|
src = fetchsvn {
|
||
|
url = "http://svn.code.sf.net/p/crossfire/code/maps/trunk/";
|
||
|
sha256 = sha256;
|
||
|
rev = rev;
|
||
|
};
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p "$out"
|
||
|
cp -a . "$out/"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Map data for the Crossfire free MMORPG";
|
||
|
homepage = "http://crossfire.real-time.com/";
|
||
|
license = licenses.gpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
hydraPlatforms = [];
|
||
|
maintainers = with maintainers; [ ToxicFrog ];
|
||
|
};
|
||
|
}
|