Skip to content

Commit

Permalink
libarchive: 3.3.1 -> 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz authored and globin committed Aug 28, 2017
1 parent 9435119 commit f9f9749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libarchive/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ assert xarSupport -> libxml2 != null;

stdenv.mkDerivation rec {
name = "libarchive-${version}";
version = "3.3.1";
version = "3.3.2";

src = fetchurl {
url = "${meta.homepage}/downloads/${name}.tar.gz";
sha256 = "1rr40hxlm9vy5z2zb5w7pyfkgd1a4s061qapm83s19accb8mpji9";
sha256 = "1km0mzfl6in7l5vz9kl09a88ajx562rw93ng9h2jqavrailvsbgd";
};

outputs = [ "out" "lib" "dev" ];
Expand Down

1 comment on commit f9f9749

@edolstra
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI: This breaks pythonPackages.libarchive-c: https://hydra.nixos.org/build/59642728

We could disable the breaking test:

-      py.test tests -k 'not test_check_archiveentry_with_unicode_entries_and_name_zip'
+      py.test tests -k 'not test_check_archiveentry_with_unicode_entries_and_name_zip and not test_check_archiveentry_using_python_testtar'

but I don't know if that's a good idea.

Please sign in to comment.