Merge pull request #101774 from contrun/sftpman

sftpman: init at 1.1.3
This commit is contained in:
Sandro 2020-11-26 02:10:09 +01:00 committed by GitHub
commit b5edb50fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonApplication rec {
pname = "sftpman";
version = "1.1.3";
src = fetchFromGitHub {
owner = "spantaleev";
repo = pname;
rev = version;
sha256 = "04awwwfw51fi1q18xdysp54jyhr0rhb4kfyrgv0vhhrlpwwyhnqy";
};
checkPhase = ''
$out/bin/sftpman help
'';
meta = with lib; {
homepage = "https://github.com/spantaleev/sftpman";
description = "Application that handles sshfs/sftp file systems mounting";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ contrun ];
};
}

View File

@ -7135,6 +7135,8 @@ in
sewer = callPackage ../tools/admin/sewer { };
sftpman = callPackage ../tools/filesystems/sftpman { };
screenfetch = callPackage ../tools/misc/screenfetch { };
sg3_utils = callPackage ../tools/system/sg3_utils { };