Merge pull request #209490 from r-ryantm/auto-update/sftpgo

sftpgo: 2.4.0 -> 2.4.2
This commit is contained in:
Fabian Affolter 2023-01-08 00:20:16 +01:00 committed by GitHub
commit 41b5350a1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,21 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: { lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec { buildGoModule rec {
pname = "sftpgo"; pname = "sftpgo";
version = "2.4.0"; version = "2.4.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "drakkan"; owner = "drakkan";
repo = "sftpgo"; repo = "sftpgo";
rev = "v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-A4+YmChUPn+6P0rBuzYcABXyjXRZWY5KS1YcFZHCrYo="; hash = "sha256-bI4IiYzVorocITkip+Xev3t7vGeMVmqCZn7oR1mAPpI=";
}; };
vendorHash = "sha256-kwluXCkbclrfRsrdqSxb5+TCBpVPZmDmrbpzR+yuQdQ="; vendorHash = "sha256-+i6jUImDMrsDnIPjIp8uM2BR1IYMqWG1OmvA2w/AfVQ=";
ldflags = [ ldflags = [
"-s" "-s"
@ -36,8 +40,9 @@ buildGoModule rec {
--fish <($out/bin/sftpgo gen completion fish) --fish <($out/bin/sftpgo gen completion fish)
''; '';
meta = { meta = with lib; {
homepage = "https://github.com/drakkan/sftpgo"; homepage = "https://github.com/drakkan/sftpgo";
changelog = "https://github.com/drakkan/sftpgo/releases/tag/v${version}";
description = "Fully featured and highly configurable SFTP server"; description = "Fully featured and highly configurable SFTP server";
longDescription = '' longDescription = ''
Fully featured and highly configurable SFTP server Fully featured and highly configurable SFTP server
@ -46,7 +51,7 @@ buildGoModule rec {
local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, local filesystem, encrypted local filesystem, S3 (compatible) Object Storage,
Google Cloud Storage, Azure Blob Storage, SFTP. Google Cloud Storage, Azure Blob Storage, SFTP.
''; '';
license = lib.licenses.agpl3Only; license = licenses.agpl3Only;
maintainers = with lib.maintainers; [ thenonameguy ]; maintainers = with maintainers; [ thenonameguy ];
}; };
} }