Merge pull request #171837 from trofi/update-opentyrian

opentyrian: 2.1.20130907 -> 2.1.20220318
main
Artturi 2 years ago committed by GitHub
commit 841e6ae7cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 44
      pkgs/games/opentyrian/default.nix

@ -1,35 +1,43 @@
{ lib, stdenv, fetchurl, fetchzip, SDL, SDL_net }:
{ lib
, stdenv
, fetchFromGitHub
, fetchzip
, SDL2
, SDL2_net
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "opentyrian";
version = "2.1.20130907";
version = "2.1.20220318";
src = fetchurl {
url = "https://bitbucket.org/opentyrian/opentyrian/get/${version}.tar.gz";
sha256 = "1jnrkq616pc4dhlbd4n30d65vmn25q84w6jfv9383l9q20cqf2ph";
src = fetchFromGitHub {
owner = "opentyrian";
repo = "opentyrian";
rev = "v${version}";
sha256 = "01z1zxpps4ils0bnwazl9lmqdbfhfd8fkacahnh6kqyczavg40xg";
};
data = fetchzip {
url = "http://sites.google.com/a/camanis.net/opentyrian/tyrian/tyrian21.zip";
url = "https://camanis.net/tyrian/tyrian21.zip";
sha256 = "1biz6hf6s7qrwn8ky0g6p8w7yg715w7yklpn6258bkks1s15hpdb";
};
buildInputs = [SDL SDL_net];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL2 SDL2_net ];
patchPhase = "
substituteInPlace src/file.c --replace /usr/share $out/share
";
buildPhase = "make release";
installPhase = "
mkdir -p $out/bin
cp ./opentyrian $out/bin
mkdir -p $out/share/opentyrian/data
cp -r $data/* $out/share/opentyrian/data
";
enableParallelBuilding = true;
makeFlags = [ "prefix=${placeholder "out"}" ];
postInstall = ''
mkdir -p $out/share/games/tyrian
cp -r $data/* $out/share/games/tyrian/
'';
meta = {
description = ''Open source port of the game "Tyrian"'';
homepage = "https://bitbucket.org/opentyrian/opentyrian";
homepage = "https://github.com/opentyrian/opentyrian";
# This does not account of Tyrian data.
# license = lib.licenses.gpl2;
};

Loading…
Cancel
Save