nixpkgs/pkgs/applications/misc/doomseeker/default.nix

29 lines
802 B
Nix
Raw Normal View History

{ stdenv, cmake, fetchurl, pkgconfig, qt4, zlib, bzip2 }:
stdenv.mkDerivation rec {
2015-04-04 18:00:34 +00:00
name = "doomseeker-1.0";
2015-12-13 10:46:09 +00:00
src = fetchurl {
url = "http://doomseeker.drdteam.org/files/${name}_src.tar.bz2";
2015-04-04 18:00:34 +00:00
sha256 = "172ybxg720r64hp6aah0hqvxklqv1cf8v7kwx0ng5ap0h20jydbw";
};
2015-12-13 10:46:09 +00:00
buildInputs = [ qt4 zlib bzip2 ];
nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
patchPhase = ''
substituteInPlace src/core/CMakeLists.txt --replace /usr/share/applications "$out"/share/applications
'';
meta = {
homepage = http://doomseeker.drdteam.org/;
description = "Multiplayer server browser for many Doom source ports";
license = stdenv.lib.licenses.gpl2;
2014-11-19 11:03:00 +00:00
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ MP2E ];
};
}