mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
734 B
Nix
26 lines
734 B
Nix
{ lib, stdenv, fetchurl, zeroad-unwrapped }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "0ad-data";
|
|
inherit (zeroad-unwrapped) version;
|
|
|
|
src = fetchurl {
|
|
url = "http://releases.wildfiregames.com/0ad-${version}-alpha-unix-data.tar.xz";
|
|
sha256 = "sgDkhVj4goB5EOPGhlZ7ajliSNnUGAROz94JCwV3LX0=";
|
|
};
|
|
|
|
installPhase = ''
|
|
rm binaries/data/tools/fontbuilder/fonts/*.txt
|
|
mkdir -p $out/share/0ad
|
|
cp -r binaries/data $out/share/0ad/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free, open-source game of ancient warfare -- data files";
|
|
homepage = "https://play0ad.com/";
|
|
license = licenses.cc-by-sa-30;
|
|
maintainers = with maintainers; [ chvp ];
|
|
platforms = platforms.linux;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|