depot/third_party/nixpkgs/pkgs/games/crossfire/crossfire-maps.nix
Default email 2ce5db779a Project import generated by Copybara.
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
2022-05-18 16:49:53 +02:00

27 lines
602 B
Nix

{ stdenv, lib, fetchsvn,
version, rev, sha256 }:
stdenv.mkDerivation rec {
pname = "crossfire-maps";
version = rev;
src = fetchsvn {
url = "http://svn.code.sf.net/p/crossfire/code/maps/trunk/";
inherit sha256;
rev = "r${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 ];
};
}