sftpman: init at 1.1.3

This commit is contained in:
YI 2020-10-27 00:08:39 +08:00
parent 377d00d24a
commit 5475bdc4b1
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

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