waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / games / crossfire / crossfire-maps.nix
blob7740452d054d5c84f825bc0bd09b0d23a891f86f
2   stdenv,
3   lib,
4   fetchsvn,
5   version,
6   rev,
7   sha256,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "crossfire-maps";
12   version = rev;
14   src = fetchsvn {
15     url = "http://svn.code.sf.net/p/crossfire/code/maps/trunk/";
16     inherit sha256;
17     rev = "r${rev}";
18   };
20   installPhase = ''
21     mkdir -p "$out"
22     cp -a . "$out/"
23   '';
25   meta = with lib; {
26     description = "Map data for the Crossfire free MMORPG";
27     homepage = "http://crossfire.real-time.com/";
28     license = licenses.gpl2Plus;
29     platforms = platforms.linux;
30     hydraPlatforms = [ ];
31     maintainers = with maintainers; [ ToxicFrog ];
32   };