zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / games / crossfire / crossfire-arch.nix
blobcb21856eab9f8ba8c3c2a8787085aab6a108f229
2   stdenv,
3   lib,
4   fetchsvn,
5   version,
6   rev,
7   sha256,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "crossfire-arch";
12   version = rev;
14   src = fetchsvn {
15     url = "http://svn.code.sf.net/p/crossfire/code/arch/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 = "Archetype 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   };