forked from mirrors/nixpkgs
opentyrian: 2.1.20130907 -> 2.1.20220318
Updated homepage url and download url to github. Updated assets URL.
This commit is contained in:
parent
32bebf42ea
commit
da840a3ba1
|
@ -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…
Reference in a new issue