about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-26 13:54:03 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-26 15:18:57 +0100
commit5d4a0aeee55635e0c8107933c363377adb0341fd (patch)
tree7f7b94865060fed30cad6b023f74796c1f13e45d /pkgs/games
parent4a3d942b06041719304c87b64abbf9ed24ba3d54 (diff)
downloadnixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar.gz
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar.bz2
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar.lz
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar.xz
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.tar.zst
nixlib-5d4a0aeee55635e0c8107933c363377adb0341fd.zip
snipes: replace commit which doesn't belong to any branch with parent commit and recreate patch
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/snipes/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/games/snipes/default.nix b/pkgs/games/snipes/default.nix
index 66188ba0efe8..01b24ee434c3 100644
--- a/pkgs/games/snipes/default.nix
+++ b/pkgs/games/snipes/default.nix
@@ -13,13 +13,15 @@ in stdenv.mkDerivation {
   src = fetchFromGitHub {
     owner  = "Davidebyzero";
     repo   = "Snipes";
-    rev    = "343e14104b7848eb1f882401888e685b7918ef9f";
-    sha256 = "1rl70d5miak34warbwfv27z11vln4lvf7maqqc78z0gdc5zivdv2";
+    rev    = "594af45108e07aa4159c3babc9b5e53609c3fd6e";
+    sha256 = "0gmh38swm74jmljy0bq27ipqzb4h8y9rzwc1j6harbd9qqz5knac";
   };
 
   postPatch = ''
     substitute config-sample.h config.h \
       --replace SnipesConsole.ttf $out/share/snipes/SnipesConsole.ttf
+    substituteInPlace GNUmakefile \
+      --replace 'CFLAGS=-Werror -Wall' 'CFLAGS=-Wall'
   '';
 
   enableParallelBuilding = true;