mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #209490 from r-ryantm/auto-update/sftpgo
sftpgo: 2.4.0 -> 2.4.2
This commit is contained in:
commit
41b5350a1e
@ -1,17 +1,21 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "sftpgo";
|
||||
version = "2.4.0";
|
||||
version = "2.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "drakkan";
|
||||
repo = "sftpgo";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-A4+YmChUPn+6P0rBuzYcABXyjXRZWY5KS1YcFZHCrYo=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-bI4IiYzVorocITkip+Xev3t7vGeMVmqCZn7oR1mAPpI=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-kwluXCkbclrfRsrdqSxb5+TCBpVPZmDmrbpzR+yuQdQ=";
|
||||
vendorHash = "sha256-+i6jUImDMrsDnIPjIp8uM2BR1IYMqWG1OmvA2w/AfVQ=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
@ -36,8 +40,9 @@ buildGoModule rec {
|
||||
--fish <($out/bin/sftpgo gen completion fish)
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/drakkan/sftpgo";
|
||||
changelog = "https://github.com/drakkan/sftpgo/releases/tag/v${version}";
|
||||
description = "Fully featured and highly configurable SFTP server";
|
||||
longDescription = ''
|
||||
Fully featured and highly configurable SFTP server
|
||||
@ -46,7 +51,7 @@ buildGoModule rec {
|
||||
local filesystem, encrypted local filesystem, S3 (compatible) Object Storage,
|
||||
Google Cloud Storage, Azure Blob Storage, SFTP.
|
||||
'';
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ thenonameguy ];
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = with maintainers; [ thenonameguy ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user