nixpkgs/pkgs/servers/sftpgo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.8 KiB
Nix
Raw Normal View History

2023-01-07 22:21:39 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
2023-04-19 13:13:54 +00:00
, nixosTests
2023-01-07 22:21:39 +00:00
}:
2022-10-23 12:44:59 +00:00
buildGoModule rec {
pname = "sftpgo";
2023-12-23 08:31:37 +00:00
version = "2.5.6";
2022-10-23 12:44:59 +00:00
src = fetchFromGitHub {
owner = "drakkan";
repo = "sftpgo";
2023-01-07 22:21:39 +00:00
rev = "refs/tags/v${version}";
2023-12-23 08:31:37 +00:00
hash = "sha256-ea4DbPwi2tcRgmbNsZKKUOVkp6vjRbr679yAP7znNUc=";
2022-10-23 12:44:59 +00:00
};
2023-12-23 08:31:37 +00:00
vendorHash = "sha256-8TBDaDBLy+82BwsaLncDknVIrauF0eop9e2ZhwcLmIs=";
2022-10-23 12:44:59 +00:00
ldflags = [
"-s"
"-w"
"-X github.com/drakkan/sftpgo/v2/internal/version.commit=${src.rev}"
"-X github.com/drakkan/sftpgo/v2/internal/version.date=1970-01-01T00:00:00Z"
];
nativeBuildInputs = [ installShellFiles ];
doCheck = false;
subPackages = [ "." ];
postInstall = ''
$out/bin/sftpgo gen man
installManPage man/*.1
installShellCompletion --cmd sftpgo \
--bash <($out/bin/sftpgo gen completion bash) \
--zsh <($out/bin/sftpgo gen completion zsh) \
--fish <($out/bin/sftpgo gen completion fish)
shareDirectory="$out/share/sftpgo"
mkdir -p "$shareDirectory"
cp -r ./{openapi,static,templates} "$shareDirectory"
2022-10-23 12:44:59 +00:00
'';
2023-04-19 13:13:54 +00:00
passthru.tests = nixosTests.sftpgo;
2023-01-07 22:21:39 +00:00
meta = with lib; {
2022-10-23 12:44:59 +00:00
homepage = "https://github.com/drakkan/sftpgo";
2023-01-07 22:21:39 +00:00
changelog = "https://github.com/drakkan/sftpgo/releases/tag/v${version}";
2022-10-23 12:44:59 +00:00
description = "Fully featured and highly configurable SFTP server";
longDescription = ''
Fully featured and highly configurable SFTP server
with optional HTTP/S, FTP/S and WebDAV support.
Several storage backends are supported:
local filesystem, encrypted local filesystem, S3 (compatible) Object Storage,
Google Cloud Storage, Azure Blob Storage, SFTP.
'';
2023-01-07 22:21:39 +00:00
license = licenses.agpl3Only;
2023-04-20 11:14:52 +00:00
maintainers = with maintainers; [ thenonameguy yayayayaka ];
2023-11-23 21:09:35 +00:00
mainProgram = "sftpgo";
2022-10-23 12:44:59 +00:00
};
}