tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fteqw: unstable-2022-08-09 -> unstable-2023-08-03
esthromeris
2 years ago
96e34513
3d6ebeb2
+9
-8
2 changed files
expand all
collapse all
unified
split
pkgs
games
fteqw
default.nix
generic.nix
+1
-1
pkgs/games/fteqw/default.nix
···
1
{ lib
2
, stdenv
3
-
, fetchsvn
4
, gzip
5
, libvorbis
6
, libmad
···
1
{ lib
2
, stdenv
3
+
, fetchFromGitHub
4
, gzip
5
, libvorbis
6
, libmad
+8
-7
pkgs/games/fteqw/generic.nix
···
1
{ lib
2
-
, fetchsvn
3
, stdenv
4
, libopus
5
, xorg
···
14
15
stdenv.mkDerivation {
16
inherit pname buildFlags buildInputs nativeBuildInputs postFixup;
17
-
version = "unstable-2022-08-09";
18
19
-
src = fetchsvn {
20
-
url = "https://svn.code.sf.net/p/fteqw/code/trunk";
21
-
rev = "6303";
22
-
sha256 = "sha256-tSTFX59iVUvndPRdREayKpkQ+YCYKCMQe2PXZfnTgPQ=";
0
23
};
24
25
makeFlags = [
···
45
46
meta = with lib; {
47
inherit description;
48
-
homepage = "https://fte.triptohell.info";
49
longDescription = ''
50
FTE is a game engine baed on QuakeWorld able to
51
play games such as Quake 1, 2, 3, and Hexen 2.
···
1
{ lib
2
+
, fetchFromGitHub
3
, stdenv
4
, libopus
5
, xorg
···
14
15
stdenv.mkDerivation {
16
inherit pname buildFlags buildInputs nativeBuildInputs postFixup;
17
+
version = "unstable-2023-08-03";
18
19
+
src = fetchFromGitHub {
20
+
owner = "fte-team";
21
+
repo = "fteqw";
22
+
rev = "3adec5d0a53ba9ae32a92fc0a805cf6d5ec107fb";
23
+
hash = "sha256-p/U02hwKI+YqlVXIS/7+gujknNDLr5L53unjvG5qLJU=";
24
};
25
26
makeFlags = [
···
46
47
meta = with lib; {
48
inherit description;
49
+
homepage = "https://fteqw.org";
50
longDescription = ''
51
FTE is a game engine baed on QuakeWorld able to
52
play games such as Quake 1, 2, 3, and Hexen 2.