python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / blackshades / default.nix
blobbd21fc0807038d9a1f72164ebfafd786fb9fb493
1 { lib, stdenv, fetchFromSourcehut
2 , zig, glfw, libGLU, libGL, openal, libsndfile }:
4 stdenv.mkDerivation rec {
5   pname = "blackshades";
6   version = "2.4.9";
8   src = fetchFromSourcehut {
9     owner = "~cnx";
10     repo = pname;
11     rev = version;
12     fetchSubmodules = true;
13     sha256 = "sha256-Hg+VcWI28GzY/CPm1lUftP0RGztOnzizrKJQVTmeJ9I=";
14   };
16   nativeBuildInputs = [ zig ];
17   buildInputs = [ glfw libGLU libGL openal libsndfile ];
19   preBuild = ''
20     export HOME=$TMPDIR
21   '';
23   installPhase = ''
24     zig build -Drelease-fast -Dcpu=baseline --prefix $out install
25   '';
27   meta = {
28     homepage = "https://sr.ht/~cnx/blackshades";
29     description = "A psychic bodyguard FPS";
30     license = lib.licenses.gpl3Plus;
31     maintainers = with lib.maintainers; [ McSinyx viric ];
32     platforms = with lib.platforms; linux;
33   };