nixpkgs/pkgs/games/scorched3d/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.5 KiB
Nix
Raw Normal View History

2022-10-14 03:28:40 +00:00
{ lib, stdenv, fetchurl, libGLU, libGL, glew, pkg-config, openalSoft, freealut, wxGTK32, libogg
2015-09-05 18:10:19 +00:00
, freetype, libvorbis, fftwSinglePrec, SDL, SDL_net, expat, libjpeg, libpng }:
2015-09-05 18:10:19 +00:00
stdenv.mkDerivation rec {
version = "44";
pname = "scorched3d";
src = fetchurl {
2015-09-05 18:10:19 +00:00
url = "mirror://sourceforge/scorched3d/Scorched3D-${version}-src.tar.gz";
sha256 = "1fldi9pn7cz6hc9h70pacgb7sbykzcac44yp3pkhn0qh4axj10qw";
};
buildInputs =
2022-10-14 03:28:40 +00:00
[ libGLU libGL glew openalSoft freealut wxGTK32 libogg freetype libvorbis
SDL SDL_net expat libjpeg libpng fftwSinglePrec
2015-09-05 18:10:19 +00:00
];
nativeBuildInputs = [ pkg-config ];
2017-09-08 13:08:00 +00:00
patches = [
./file-existence.patch
(fetchurl {
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/games-strategy/scorched3d/files/scorched3d-44-fix-c++14.patch?id=1bbcfc9ae3dfdfcbdd35151cb7b6050776215e4d";
sha256 = "1farmjxbc2wm4scsdbdnvh29fipnb6mp6z85hxz4bx6n9kbc8y7n";
})
2022-10-14 03:28:40 +00:00
(fetchurl {
url = "https://sources.debian.org/data/main/s/scorched3d/44%2Bdfsg-7/debian/patches/wx3.0-compat.patch";
sha256 = "sha256-Y5U5yYNT5iMqhdRaDMFtZ4K7aD+pugFZP0jLh7rdDp8=";
})
2017-09-08 13:08:00 +00:00
];
sourceRoot = "scorched";
configureFlags = [ "--with-fftw=${fftwSinglePrec.dev}" ];
2019-10-30 11:34:47 +00:00
NIX_LDFLAGS = "-lopenal";
meta = with lib; {
homepage = "http://scorched3d.co.uk/";
description = "3D Clone of the classic Scorched Earth";
2015-09-05 18:10:19 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux; # maybe more
maintainers = with maintainers; [ abbradar ];
};
}