summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-06-10 09:00:47 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-06-10 09:00:47 +0200
commit7829a2c92e0aac11391af121504097be50d991c6 (patch)
tree0a7649e4c3ac12b6ab0cb33bf118d8637b4b5e19
parent556562173cef5f499c46d664ebf26d99d90a66ad (diff)
chocolate-doom: update from 2.1.0 to 2.2.0
-rw-r--r--pkgs/games/chocolate-doom/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/games/chocolate-doom/default.nix b/pkgs/games/chocolate-doom/default.nix
index 75cee19c6805..8bb55702c599 100644
--- a/pkgs/games/chocolate-doom/default.nix
+++ b/pkgs/games/chocolate-doom/default.nix
@@ -1,15 +1,14 @@
-{ stdenv, autoconf, automake, pkgconfig, SDL, SDL_mixer, SDL_net, fetchurl }:
+{ stdenv, autoreconfHook, pkgconfig, SDL, SDL_mixer, SDL_net, fetchurl }:
stdenv.mkDerivation rec {
- name = "chocolate-doom-2.1.0";
+ name = "chocolate-doom-2.2.0";
src = fetchurl {
url = "https://github.com/chocolate-doom/chocolate-doom/archive/${name}.tar.gz";
- sha256 = "1qwnc5j3n99jk35c487mxsij04m4kpkqzkbrb8qwqlsnqllyh1s1";
+ sha256 = "0har8zcg3j41byxc3dx6a00aly8vpysf1q7h2qbw39nlrcghag7b";
};
- buildInputs = [ autoconf automake pkgconfig SDL SDL_mixer SDL_net ];
+ buildInputs = [ autoreconfHook pkgconfig SDL SDL_mixer SDL_net ];
patchPhase = ''
sed -e 's#/games#/bin#g' -i src{,/setup}/Makefile.am
- ./autogen.sh --prefix=$out
'';
enableParallelBuilding = true;