mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
syncrclone: init at unstable-2023-03-23
This commit is contained in:
parent
6b06ba36a9
commit
05e5631961
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