Files
nixpkgs/pkgs/by-name/rm/rmfuse/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

53 lines
1.1 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication {
pname = "rmfuse";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "rschroll";
repo = "rmfuse";
rev = "3796b8610c8a965a60a417fc0bf8ea5200b71fd2";
hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8=";
};
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
pythonRelaxDeps = [
"bidict"
"rmrl"
"xdg"
];
propagatedBuildInputs = with python3.pkgs; [
bidict
rmrl
rmcl
pyfuse3
xdg
];
meta = {
description = "FUSE access to the reMarkable Cloud";
homepage = "https://github.com/rschroll/rmfuse";
license = lib.licenses.mit;
longDescription = ''
RMfuse provides access to your reMarkable Cloud files in the form of a
FUSE filesystem. These files are exposed either in their original format,
or as PDF files that contain your annotations. This lets you manage files
in the reMarkable Cloud using the same tools you use on your local
system.
'';
maintainers = [ ];
mainProgram = "rmfuse";
};
}