summary refs log tree commit diff
path: root/pkgs/games/gtetrinet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/gtetrinet/default.nix')
-rw-r--r--pkgs/games/gtetrinet/default.nix31
1 files changed, 14 insertions, 17 deletions
diff --git a/pkgs/games/gtetrinet/default.nix b/pkgs/games/gtetrinet/default.nix
index a8695e54ad9..f1c24ba4de8 100644
--- a/pkgs/games/gtetrinet/default.nix
+++ b/pkgs/games/gtetrinet/default.nix
@@ -1,5 +1,4 @@
-{ fetchFromGitHub, stdenv
-, perl, perlPackages, gnome2, intltool, pkgconfig, autoconf, automake }:
+{ fetchFromGitHub, stdenv, autoreconfHook, intltool, pkgconfig, libgnome, libgnomeui, GConf }:
 
 stdenv.mkDerivation {
   name = "gtetrinet-0.7.11";
@@ -11,28 +10,26 @@ stdenv.mkDerivation {
     sha256 = "1y05x8lfyxvkjg6c87cfd0xxmb22c88scx8fq3gah7hjy5i42v93";
   };
 
-  buildInputs = [
-    perl
-    perlPackages.XMLParser
-    intltool
-    gnome2.libgnome
-    gnome2.libgnomeui
-    pkgconfig
-    autoconf
-    automake
-  ];
-
-  propagatedUserEnvPkgs = [ gnome2.GConf ];
-
-  preConfigure = ''
-    autoreconf --install --force --verbose
+  nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
+
+  buildInputs = [ libgnome libgnomeui ];
+
+  propagatedUserEnvPkgs = [ GConf ];
+
+  postAutoreconf = ''
     intltoolize --force
   '';
 
+  preInstall = ''
+    export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
+  '';
+
   postInstall = ''
     mv "$out/games" "$out/bin"
   '';
 
+  enableParallelBuilding = true;
+
   meta = {
     description = "Client for Tetrinet, a multiplayer online Tetris game.";
     longDescription = ''