about summary refs log tree commit diff
path: root/pkgs/games/globulation/default.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-01-06 20:29:52 +0100
committerMichael Weiss <dev.primeos@gmail.com>2019-01-07 15:07:29 +0100
commite1d98548167f52425c089b81f594dfa9c58a5e02 (patch)
treec5ab49cc498605c4d478d1d44951b06c385971e3 /pkgs/games/globulation/default.nix
parentbd7eec5d9cc61302c456cc51868fefb931e0793d (diff)
downloadnixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar.gz
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar.bz2
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar.lz
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar.xz
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.tar.zst
nixlib-e1d98548167f52425c089b81f594dfa9c58a5e02.zip
scons: 3.0.1 -> 3.0.2
A few packages broke due to the SCons upgrade (they depended on
deprecated options that got removed), I've kept them on version 3.0.1
for now. The rest of the rebuilds seems fine (the failing ones where
already in a broken state before this change).
Diffstat (limited to 'pkgs/games/globulation/default.nix')
-rw-r--r--pkgs/games/globulation/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/globulation/default.nix b/pkgs/games/globulation/default.nix
index a539b79339f9..edfb05d237cd 100644
--- a/pkgs/games/globulation/default.nix
+++ b/pkgs/games/globulation/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libGLU_combined, SDL, scons, SDL_ttf, SDL_image, zlib, SDL_net
+{ stdenv, fetchurl, libGLU_combined, SDL, sconsPackages, SDL_ttf, SDL_image, zlib, SDL_net
 , speex, libvorbis, libogg, boost, fribidi, bsdiff
 , fetchpatch
 }:
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
     sed -i -e "s@env = Environment()@env = Environment( ENV = os.environ )@" SConstruct
   '';
 
-  nativeBuildInputs = [ scons ];
+  nativeBuildInputs = [ sconsPackages.scons_3_0_1 ];
   buildInputs = [ libGLU_combined SDL SDL_ttf SDL_image zlib SDL_net speex libvorbis libogg boost fribidi bsdiff ];
 
   postConfigure = ''