summary refs log tree commit diff
path: root/pkgs/games/wesnoth
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2018-02-25 20:17:03 +0300
committerNikolay Amiantov <ab@fmap.me>2018-02-25 22:24:09 +0300
commitff0cb800d7699190130e97450ebd49c01c980ec1 (patch)
treedd342a64625eaf41c9c17982ffe405a9afcde4c7 /pkgs/games/wesnoth
parenta80e6a51618aff97918f356bf5f6a8038d8d6c85 (diff)
downloadnixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar.gz
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar.bz2
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar.lz
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar.xz
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.tar.zst
nixpkgs-ff0cb800d7699190130e97450ebd49c01c980ec1.zip
wesnoth-dev: 1.13.8 -> 1.13.11
Diffstat (limited to 'pkgs/games/wesnoth')
-rw-r--r--pkgs/games/wesnoth/dev.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/wesnoth/dev.nix b/pkgs/games/wesnoth/dev.nix
index 95d49dd6375..9fd2dc97d98 100644
--- a/pkgs/games/wesnoth/dev.nix
+++ b/pkgs/games/wesnoth/dev.nix
@@ -1,23 +1,23 @@
 { stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf
-, pango, gettext, boost, freetype, libvorbis, fribidi, dbus, libpng, pcre
+, pango, gettext, boost, freetype, libvorbis, fribidi, dbus, libpng, pcre, openssl
 , enableTools ? false
 }:
 
 stdenv.mkDerivation rec {
   pname = "wesnoth";
-  version = "1.13.8";
+  version = "1.13.11";
 
   name = "${pname}-${version}";
 
   src = fetchurl {
     url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2";
-    sha256 = "0snm4n7l21cr4443rk93wnaqdzr91pihn452w66344zqwf33xgfr";
+    sha256 = "168732lmdnskca9hrkmaz4mi0bssc5ppklln10s306cbsl93bd39";
   };
 
   nativeBuildInputs = [ cmake pkgconfig ];
 
   buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf pango gettext boost
-                  libvorbis fribidi dbus libpng pcre ];
+                  libvorbis fribidi dbus libpng pcre openssl ];
 
   cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ];