doomseeker: fix on darwin
This commit is contained in:
parent
aba9f67d7d
commit
030760a994
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, cmake, fetchFromBitbucket, pkgconfig, qtbase, qttools, qtmultimedia, zlib, bzip2 }:
|
{ stdenv, cmake, fetchFromBitbucket, pkgconfig, qtbase, qttools, qtmultimedia, zlib, bzip2, xxd }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "doomseeker-${version}";
|
name = "doomseeker-${version}";
|
||||||
|
@ -15,10 +15,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [ qtbase qtmultimedia zlib bzip2 ];
|
buildInputs = [ qtbase qtmultimedia zlib bzip2 ];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake qttools pkgconfig ];
|
nativeBuildInputs = [ cmake qttools pkgconfig xxd ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = stdenv.lib.optional stdenv.cc.isClang "-Wno-error=format-security";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://doomseeker.drdteam.org/;
|
homepage = http://doomseeker.drdteam.org/;
|
||||||
description = "Multiplayer server browser for many Doom source ports";
|
description = "Multiplayer server browser for many Doom source ports";
|
||||||
|
|
Loading…
Reference in New Issue