mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
854 B
Nix
29 lines
854 B
Nix
{ stdenv, mkDerivation, cmake, fetchFromBitbucket, pkgconfig, qtbase, qttools, qtmultimedia, zlib, bzip2, xxd }:
|
|
|
|
mkDerivation {
|
|
pname = "doomseeker";
|
|
version = "2018-03-05";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "Doomseeker";
|
|
repo = "doomseeker";
|
|
rev = "c2c7f37b1afb";
|
|
sha256 = "17fna3a604miqsvply3klnmypps4ifz8axgd3pj96z46ybxs8akw";
|
|
};
|
|
|
|
patches = [ ./fix_paths.patch ./qt_build_fix.patch ];
|
|
|
|
nativeBuildInputs = [ cmake qttools pkgconfig xxd ];
|
|
buildInputs = [ qtbase qtmultimedia zlib bzip2 ];
|
|
|
|
hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://doomseeker.drdteam.org/";
|
|
description = "Multiplayer server browser for many Doom source ports";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.MP2E ];
|
|
};
|
|
}
|