From fd9cfc4db512f41612727a4a4fe0303fe8f67bef Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 1 Jun 2018 17:23:53 +0200 Subject: [PATCH] Revert "itstool: 2.0.2 -> 2.0.4" (#41339) This reverts commit 48698a0668552a477f4454909ca4455fef0a6d19 It crashes and breaks the build of gnome3.gnome_desktop and others. Upstream issue: https://github.com/itstool/itstool/issues/17 --- pkgs/development/tools/misc/itstool/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/itstool/default.nix b/pkgs/development/tools/misc/itstool/default.nix index 129c1c6b3a9..9368a3c1acf 100644 --- a/pkgs/development/tools/misc/itstool/default.nix +++ b/pkgs/development/tools/misc/itstool/default.nix @@ -2,11 +2,13 @@ # We need the same Python as is used to build libxml2Python stdenv.mkDerivation rec { - name = "itstool-2.0.4"; + # 2.0.3+ breaks the build of gnome3.gnome-desktop + # https://github.com/itstool/itstool/issues/17 + name = "itstool-2.0.2"; src = fetchurl { url = "http://files.itstool.org/itstool/${name}.tar.bz2"; - sha256 = "0q7b4qrc758zfx3adsgvz0r93swdbxjr42w37rahngm33nshihlp"; + sha256 = "bf909fb59b11a646681a8534d5700fec99be83bb2c57badf8c1844512227033a"; }; buildInputs = [ python2 libxml2Python ];