summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-01-16 12:38:04 -0600
committerAlyssa Ross <hi@alyssa.is>2020-01-16 21:38:19 +0000
commit0d5b21e9ba30e74c1557cc0dd851a956fc226429 (patch)
treeaedde948a2d155dc7f3b692fa212df916dfca3a9 /pkgs/tools/networking
parent3d6c99a1530e3deca2ec3787fc5746a864e8f2d5 (diff)
downloadnixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar.gz
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar.bz2
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar.lz
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar.xz
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.tar.zst
nixpkgs-0d5b21e9ba30e74c1557cc0dd851a956fc226429.zip
lftp: 4.9.0 -> 4.9.1
https://lftp.yar.ru/news.html
(cherry picked from commit 6c545f25f02a4dccf9fc2ceef3a15267d9eb53c5)
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/lftp/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/lftp/default.nix b/pkgs/tools/networking/lftp/default.nix
index 9a982e53825..602ada1476a 100644
--- a/pkgs/tools/networking/lftp/default.nix
+++ b/pkgs/tools/networking/lftp/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "lftp";
-  version = "4.9.0";
+  version = "4.9.1";
 
   src = fetchurl {
     urls = [
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
       "https://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/${pname}-${version}.tar.xz"
       "https://lftp.yar.ru/ftp/${pname}-${version}.tar.xz"
       ];
-    sha256 = "0km267h57mlrd7gnn9gf40znvb3irwfc0qaql8kii8v936g6afqb";
+    sha256 = "0jq2g8h1bx06ya9fsja748vwb2qrca4wsfrgi3fmaa8hznpgqsar";
   };
 
   nativeBuildInputs = [ pkgconfig ];