summary refs log tree commit diff
path: root/pkgs/games/uqm
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2017-11-08 06:48:57 +0100
committeraszlig <aszlig@nix.build>2017-11-08 06:48:57 +0100
commitb9b5942e2b1e3c9e81119eb748764afa7c934810 (patch)
treef4366da61dfc095e9fe69319c0f7120d84a0f272 /pkgs/games/uqm
parent7603da33decd2f3777306729d2a95c091b7801ab (diff)
downloadnixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar.gz
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar.bz2
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar.lz
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar.xz
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.tar.zst
nixpkgs-b9b5942e2b1e3c9e81119eb748764afa7c934810.zip
uqm: Remove the -lgcc_s hack
This is no longer needed and I've verified this by building and running
the game.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/games/uqm')
-rw-r--r--pkgs/games/uqm/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/games/uqm/default.nix b/pkgs/games/uqm/default.nix
index 1a2afa29f8f..d8dcdf6b7b6 100644
--- a/pkgs/games/uqm/default.nix
+++ b/pkgs/games/uqm/default.nix
@@ -50,11 +50,6 @@ in stdenv.mkDerivation rec {
     sha256 = "10nbvcrr0lc0mxivxfkcbxnibwk3vwmamabrlvwdsjxd9pk8aw65";
   };
 
-  /* uses pthread_cancel(), which requires libgcc_s.so.1 to be
-     loadable at run-time. Adding the flag below ensures that the
-     library can be found. Obviously, though, this is a hack. */
-  NIX_LDFLAGS = "-lgcc_s";
-
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ SDL SDL_image libpng libvorbis libogg libmikmod mesa ];