2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, zeroad-unwrapped }:
|
2014-06-18 23:18:53 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "0ad-data";
|
2018-05-20 21:32:03 +02:00
|
|
|
inherit (zeroad-unwrapped) version;
|
2014-06-18 23:18:53 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-11-03 14:43:42 +01:00
|
|
|
url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-data.tar.xz";
|
2021-02-22 21:06:43 +01:00
|
|
|
sha256 = "0b53jzl64i49rk3n3c3x0hibwbl7vih2xym8jq5s56klg61qdxa1";
|
2014-06-18 23:18:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-11-03 14:43:42 +01:00
|
|
|
rm binaries/data/tools/fontbuilder/fonts/*.txt
|
2014-06-18 23:18:53 +02:00
|
|
|
mkdir -p $out/share/0ad
|
2016-11-03 14:43:42 +01:00
|
|
|
cp -r binaries/data $out/share/0ad/
|
2014-06-18 23:18:53 +02:00
|
|
|
'';
|
2016-11-03 14:43:42 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-11-03 14:43:42 +01:00
|
|
|
description = "A free, open-source game of ancient warfare -- data files";
|
2017-10-23 00:19:28 +02:00
|
|
|
homepage = "https://play0ad.com/";
|
2016-11-03 14:43:42 +01:00
|
|
|
license = licenses.cc-by-sa-30;
|
2021-04-16 18:42:32 +02:00
|
|
|
maintainers = with maintainers; [ chvp ];
|
2016-11-03 14:43:42 +01:00
|
|
|
platforms = platforms.linux;
|
2016-11-05 12:15:44 +01:00
|
|
|
hydraPlatforms = [];
|
2016-11-03 14:43:42 +01:00
|
|
|
};
|
2014-06-18 23:18:53 +02:00
|
|
|
}
|