From 1145130e9b55667de80b3e34ff1f99a167af0145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carles=20Pag=C3=A8s?= Date: Sun, 18 Oct 2015 22:17:02 +0200 Subject: [PATCH] yafc: update to 1.3.6 --- pkgs/applications/networking/yafc/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/yafc/default.nix b/pkgs/applications/networking/yafc/default.nix index 2e60b9aa3228..f283631cb076 100644 --- a/pkgs/applications/networking/yafc/default.nix +++ b/pkgs/applications/networking/yafc/default.nix @@ -1,13 +1,13 @@ -{stdenv, fetchurl, readline, libssh, intltool, libbsd}: +{stdenv, fetchurl, readline, libssh, intltool, libbsd, pkgconfig}: stdenv.mkDerivation rec { - name = "yafc-1.3.2"; + name = "yafc-1.3.6"; src = fetchurl { - url = "http://www.yafc-ftp.com/upload/${name}.tar.xz"; - sha256 = "0rrhik00xynxg5s3ffqlyynvy8ssv8zfaixkpb77baxa274gnbd7"; + url = "http://www.yafc-ftp.com/downloads/${name}.tar.xz"; + sha256 = "0wvrljihliggysfnzczc0s74i3ab2c1kzjjs99iqk98nxmb2b8v3"; }; - buildInputs = [ readline libssh intltool libbsd ]; + buildInputs = [ readline libssh intltool libbsd pkgconfig ]; meta = { description = "ftp/sftp client with readline, autocompletion and bookmarks";