nixpkgs/pkgs/games/globulation/default.nix

54 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libGLU, libGL, SDL, sconsPackages, SDL_ttf, SDL_image, zlib, SDL_net
2014-10-31 22:50:15 +00:00
, speex, libvorbis, libogg, boost, fribidi, bsdiff
2017-08-26 13:56:43 +00:00
, fetchpatch
2014-10-31 22:50:15 +00:00
}:
let
version = "0.9.4";
patchlevel = "4";
tutorial4patch = fetchurl {
url = "http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=34;filename=tutorial-part4.map.bspatch;att=1;bug=595448";
name = "globulation2-tutorial4-map-patch-debian.bspatch";
sha256 = "d3511ac0f822d512c42abd34b3122f2990862d3d0af6ce464ff372f5bd7f35e9";
};
2014-10-31 22:50:15 +00:00
in
stdenv.mkDerivation rec {
name = "glob2-${version}.${patchlevel}";
2014-10-31 22:50:15 +00:00
src = fetchurl {
url = "mirror://savannah/glob2/${version}/${name}.tar.gz";
sha256 = "1f0l2cqp2g3llhr9jl6jj15k0wb5q8n29vqj99xy4p5hqs78jk8g";
};
2017-08-26 13:56:43 +00:00
patches = [ ./header-order.patch ./public-buildproject.patch
(fetchpatch {
url = "https://bitbucket.org/giszmo/glob2/commits/c9dc715624318e4fea4abb24e04f0ebdd9cd8d2a/raw";
sha256 = "0017xg5agj3dy0hx71ijdcrxb72bjqv7x6aq7c9zxzyyw0mkxj0k";
})
2017-08-26 13:56:43 +00:00
];
2014-10-31 22:50:15 +00:00
postPatch = ''
cp campaigns/tutorial-part4.map{,.orig}
bspatch campaigns/tutorial-part4.map{.orig,} ${tutorial4patch}
2014-10-31 22:50:15 +00:00
sed -i -e "s@env = Environment()@env = Environment( ENV = os.environ )@" SConstruct
'';
nativeBuildInputs = [ sconsPackages.scons_3_0_1 ];
2019-11-10 16:44:34 +00:00
buildInputs = [ libGLU libGL SDL SDL_ttf SDL_image zlib SDL_net speex libvorbis libogg boost fribidi bsdiff ];
postConfigure = ''
sconsFlags+=" BINDIR=$out/bin"
sconsFlags+=" INSTALLDIR=$out/share/globulation2"
sconsFlags+=" DATADIR=$out/share/globulation2/glob2"
2014-10-31 22:50:15 +00:00
'';
2019-10-30 01:29:30 +00:00
NIX_LDFLAGS = "-lboost_system";
meta = with lib; {
description = "RTS without micromanagement";
2014-10-31 22:50:15 +00:00
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.gpl3;
};
2014-10-31 22:50:15 +00:00
passthru.updateInfo.downloadPage = "http://globulation2.org/wiki/Download_and_Install";
}