nixpkgs/pkgs/games/odamex/default.nix
Robin Gloster 40ed226507 treewide: mark a bunch of failing builds as broken
(cherry picked from commit 23fdbaa37599f490435056b9865023870656571b)
[dezgeg: Un-mark shotcut, tokei & uchiwa that do build on master]
2017-10-01 00:26:52 +03:00

23 lines
658 B
Nix

{ stdenv, cmake, fetchurl, pkgconfig, SDL, SDL_mixer, SDL_net }:
stdenv.mkDerivation rec {
name = "odamex-0.7.0";
src = fetchurl {
url = mirror://sourceforge/odamex/odamex-src-0.7.0.tar.bz2;
sha256 = "0cb6p58yv55kdyfj7s9n9xcwpvxrj8nyc6brw9jvwlc5n4y3cd5a";
};
buildInputs = [ cmake pkgconfig SDL SDL_mixer SDL_net ];
enableParallelBuilding = true;
meta = {
homepage = http://odamex.net/;
description = "A client/server port for playing old-school Doom online";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ MP2E ];
broken = true;
};
}