filezilla: 3.67.0 -> 3.68.1; libfilezilla: 0.47.0 -> 0.49.0 (#355203)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-25 00:11:17 +01:00
committed by GitHub
2 changed files with 14 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
{ lib, stdenv
, fetchurl
, fetchsvn
, autoreconfHook
, dbus
, gettext
@@ -20,13 +20,14 @@
, Security
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "filezilla";
version = "3.67.0";
version = "3.68.1";
src = fetchurl {
url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.xz";
hash = "sha256-5drcgH25mc60ZJhPl00+9ZtWLFlUZlgFfpsgEYOtr5o=";
src = fetchsvn {
url = "https://svn.filezilla-project.org/svn/FileZilla3/trunk";
rev = "11205";
hash = "sha256-izaNfagJYUcPRPihZ1yXwLUTHunzVXuiMITW69KPSFE=";
};
configureFlags = [

View File

@@ -1,5 +1,5 @@
{ lib, stdenv
, fetchurl
, fetchsvn
, autoreconfHook
, gettext
, gnutls
@@ -10,13 +10,14 @@
, ApplicationServices
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "libfilezilla";
version = "0.47.0";
version = "0.49.0";
src = fetchurl {
url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.xz";
hash = "sha256-YYpYa2E773EKYzxCv92mFmbLsPyKkq1JA2HQvJHFg0E=";
src = fetchsvn {
url = "https://svn.filezilla-project.org/svn/libfilezilla/trunk";
rev = "11192";
hash = "sha256-fm1cenGwYcPz0TtMzbPXrZA7nAzwo8toBNA9cW2Gnh0=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];