about summary refs log tree commit diff
path: root/pkgs/development/libraries/libarchive
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-06-29 17:10:14 +0200
committerVladimír Čunát <vcunat@gmail.com>2013-06-30 09:00:12 +0200
commit62759ea9804e409322a4f026e21e471881d15bfb (patch)
tree0ce18bb188ec3799db94433b195ddc356703713e /pkgs/development/libraries/libarchive
parent9ce21dab8d7f02a806929eabf98de9380cea0ce6 (diff)
downloadnixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar.gz
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar.bz2
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar.lz
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar.xz
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.tar.zst
nixlib-62759ea9804e409322a4f026e21e471881d15bfb.zip
libarchive: update 3.0.4 -> 3.1.2, homepage move
Diffstat (limited to 'pkgs/development/libraries/libarchive')
-rw-r--r--pkgs/development/libraries/libarchive/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix
index 851601fe9639..e0f2ba77de2d 100644
--- a/pkgs/development/libraries/libarchive/default.nix
+++ b/pkgs/development/libraries/libarchive/default.nix
@@ -2,11 +2,11 @@
 , sharutils }:
 
 stdenv.mkDerivation rec {
-  name = "libarchive-3.0.4";
+  name = "libarchive-3.1.2";
 
   src = fetchurl {
-    url = "https://github.com/downloads/libarchive/libarchive/${name}.tar.gz";
-    sha256 = "76e8d7c7b100ec4071e48c1b7d3f3ea1d22b39db3e45b7189f75b5ff4df90fac";
+    url = "${meta.homepage}/downloads/${name}.tar.gz";
+    sha256 = "0pixqnrcf35dnqgv0lp7qlcw7k13620qkhgxr288v7p4iz6ym1zb";
   };
 
   buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz ] ++
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
       compressions formats including (but not limited to) tar, shar, cpio, zip, and
       compressed with gzip, bzip2, lzma, xz, .. 
     '';
-    homepage = http://libarchive.github.com/;
+    homepage = http://libarchive.org;
     license = stdenv.lib.licenses.bsd3;
     platforms = with stdenv.lib.platforms; all;
     maintainers = with stdenv.lib.maintainers; [ jcumming ];