Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

xar: 1.5.2 -> 1.6.1

+4 -4
+4 -4
pkgs/tools/compression/xar/default.nix
··· 1 1 { stdenv, fetchurl, libxml2, openssl, zlib, bzip2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.5.2"; 4 + version = "1.6.1"; 5 5 name = "xar-${version}"; 6 6 7 7 src = fetchurl { 8 - url = "https://xar.googlecode.com/files/${name}.tar.gz"; 9 - sha256 = "1rp3va6akzlh35yqrapfqnbxaxa0zi8wyr93swbapprwh215cpac"; 8 + url = "https://github.com/downloads/mackyle/xar/${name}.tar.gz"; 9 + sha256 = "0ghmsbs6xwg1092v7pjcibmk5wkyifwxw6ygp08gfz25d2chhipf"; 10 10 }; 11 11 12 12 buildInputs = [ libxml2 openssl zlib bzip2 ]; 13 13 14 14 meta = { 15 - homepage = https://code.google.com/p/xar/; 15 + homepage = https://mackyle.github.io/xar/; 16 16 description = "Extensible Archiver"; 17 17 18 18 longDescription =