blob: 1f0e9ae18a64b7dbdc1a2d548f4980584f6c92ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ lib
, stdenv
, fetchFromGitHub
, fetchzip
, SDL2
, SDL2_net
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "opentyrian";
version = "2.1.20221123";
src = fetchFromGitHub {
owner = "opentyrian";
repo = "opentyrian";
rev = "v${version}";
sha256 = "sha256-fVcc8v1c9uU72X6afEo4VoMo6YuDECQSwDQ/TQjgwUY=";
};
data = fetchzip {
url = "https://camanis.net/tyrian/tyrian21.zip";
sha256 = "1biz6hf6s7qrwn8ky0g6p8w7yg715w7yklpn6258bkks1s15hpdb";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL2 SDL2_net ];
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"'';
mainProgram = "opentyrian";
homepage = "https://github.com/opentyrian/opentyrian";
# This does not account of Tyrian data.
# license = lib.licenses.gpl2;
};
}
|