summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-08 13:34:42 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-08 13:34:42 +0000
commitd2747b12e98a91b734528cb29eab3a3af288c7b9 (patch)
tree251827431c1032efbc923e9054e49d45ac2c50db /pkgs/development
parent88b69df2dcc8898a9f2cb1a1981c41b1e297f859 (diff)
downloadnixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar.gz
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar.bz2
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar.lz
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar.xz
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.tar.zst
nixlib-d2747b12e98a91b734528cb29eab3a3af288c7b9.zip
Updating and fixing physfs, so more videogames can build.
svn path=/nixpkgs/trunk/; revision=32891
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/physfs/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/libraries/physfs/default.nix b/pkgs/development/libraries/physfs/default.nix
index 79ddf9cfe11a..fef902fec035 100644
--- a/pkgs/development/libraries/physfs/default.nix
+++ b/pkgs/development/libraries/physfs/default.nix
@@ -1,15 +1,19 @@
 {stdenv, fetchurl, cmake}:
 
 stdenv.mkDerivation rec {
-  name = "physfs-2.0.0";
+  name = "physfs-2.0.2";
 
   src = fetchurl {
     url = "${meta.homepage}/downloads/${name}.tar.gz";
-    sha256 = "072hqprni4vf4ax6b659s2xxrbz0y6iziarsczawbhi69m4azpyb";
+    sha256 = "02dwy0vsn2dp31f15vxd3yxxr1rgy25ab7ncavyh73i290qnsadf";
   };
 
   buildNativeInputs = [ cmake ];
 
+  patchPhase = ''
+    sed s,-Werror,, -i CMakeLists.txt
+  '';
+
   meta = {
     homepage = http://icculus.org/physfs/;
     description = "Library to provide abstract access to various archives";