Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4ebf21c8ba24
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2bfa0f9d2538
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 1, 2018

  1. Copy the full SHA
    2bfa0f9 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/tools/misc/itstool/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/tools/misc/itstool/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];