Merge pull request #261425 from ProminentRetail/syncrclone
syncrclone: init at unstable-2023-03-23
This commit is contained in:
commit
b8d6d842d0
31
pkgs/by-name/sy/syncrclone/package.nix
Normal file
31
pkgs/by-name/sy/syncrclone/package.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "syncrclone";
|
||||
version = "unstable-2023-03-23";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jwink3101";
|
||||
repo = "syncrclone";
|
||||
rev = "137c9c4cc737a383b23cd9a5a21bb079e6a8fc59";
|
||||
hash = "sha256-v81hPeu5qnMG6Sb95D88jy5x/GO781bf7efCYjbOaxs=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"syncrclone"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Bidirectional sync tool for rclone";
|
||||
homepage = "https://github.com/Jwink3101/syncrclone";
|
||||
changelog = "https://github.com/Jwink3101/syncrclone/blob/${src.rev}/docs/changelog.md";
|
||||
sourceProvenance = with sourceTypes; [ fromSource ];
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ prominentretail ];
|
||||
mainProgram = "syncrclone";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user