Files
nixpkgs/pkgs/by-name/sy/syncrclone/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

35 lines
879 B
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "syncrclone";
version = "0-unstable-2023-03-23";
pyproject = true;
src = fetchFromGitHub {
owner = "jwink3101";
repo = "syncrclone";
rev = "137c9c4cc737a383b23cd9a5a21bb079e6a8fc59";
hash = "sha256-v81hPeu5qnMG6Sb95D88jy5x/GO781bf7efCYjbOaxs=";
};
build-system = with python3.pkgs; [ setuptools ];
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";
};
}