forked from mirrors/nixpkgs
sftpman: init at 1.1.3
This commit is contained in:
parent
377d00d24a
commit
5475bdc4b1
25
pkgs/tools/filesystems/sftpman/default.nix
Normal file
25
pkgs/tools/filesystems/sftpman/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue