summary refs log tree commit diff
path: root/pkgs/games/spring
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-27 22:08:20 +0000
committerRobin Gloster <mail@glob.in>2016-08-27 22:08:20 +0000
commit132571454c8162cdefe9e94613137d6a13b950b7 (patch)
treeac9ab5b65c64a9f34edda7ba4b5700d4cb0c996c /pkgs/games/spring
parentb37460ec6357335a599beb36b51a17b186276d52 (diff)
downloadnixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar.gz
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar.bz2
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar.lz
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar.xz
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.tar.zst
nixpkgs-132571454c8162cdefe9e94613137d6a13b950b7.zip
springlobby: remove obsolete `substituteInPlace`s
Diffstat (limited to 'pkgs/games/spring')
-rw-r--r--pkgs/games/spring/springlobby.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix
index 2cd9f24721f..efab1defbed 100644
--- a/pkgs/games/spring/springlobby.nix
+++ b/pkgs/games/spring/springlobby.nix
@@ -1,8 +1,8 @@
 { stdenv, fetchurl, cmake, wxGTK30, openal, pkgconfig, curl, libtorrentRasterbar
 , libpng, libX11, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring
 , makeWrapper, glib, minizip, alure, pcre, jsoncpp }:
-stdenv.mkDerivation rec {
 
+stdenv.mkDerivation rec {
   name = "springlobby-${version}";
   version = "0.247";
 
@@ -16,12 +16,6 @@ stdenv.mkDerivation rec {
     boost libpng libX11 libnotify gtk doxygen makeWrapper glib minizip alure
   ];
 
-  prePatch = ''
-    substituteInPlace tools/regen_config_header.sh --replace "#!/usr/bin/env bash" "#!${bash}/bin/bash"
-    substituteInPlace tools/test-susynclib.awk --replace "#!/usr/bin/awk" "#!${gawk}/bin/awk"
-    substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system"
-  '';
-
   enableParallelBuilding = true;
 
   postInstall = ''