summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Ivankov <boltzmannrain@gmail.com>2024-11-17 10:56:29 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-11-25 23:17:36 +0000
commit2484d9a7b155e1a8c2b6e21fcd41980b4414b2df (patch)
tree0d0f42544e5162d4f6dcc739b40edcfcd0e03a40
parent[Backport release-24.11] Revert "singularity-tools: don't preserve store cont... (diff)
downloadnixpkgs-origin/backport-355090-to-release-24.11.tar.gz
rmapi: 0.25 -> 0.0.27.1 and switching to a maintained fork (#355090)origin/backport-355090-to-release-24.11
Current version is outdated and falls behind server API: ```console $ rmapi ERROR: 2024/11/10 23:41:20 main.go:77: failed to build documents tree, last error: request failed with status 410 ``` https://github.com/juruen/rmapi repo is archived https://github.com/ddvk/rmapi looks like a viable fork This fork and version bump is suggested in https://www.reddit.com/r/RemarkableTablet/comments/1flzmqq/rmapi_error/ https://github.com/ddvk/rmapi/issues/5 (cherry picked from commit 837ed96b9748a8576ea99c3845cc00947ec075fa)
-rw-r--r--pkgs/by-name/rm/rmapi/package.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/by-name/rm/rmapi/package.nix b/pkgs/by-name/rm/rmapi/package.nix
index c995fdcad389..a5632bad1180 100644
--- a/pkgs/by-name/rm/rmapi/package.nix
+++ b/pkgs/by-name/rm/rmapi/package.nix
@@ -2,23 +2,23 @@
buildGoModule rec {
pname = "rmapi";
- version = "0.0.25";
+ version = "0.0.27.1";
src = fetchFromGitHub {
- owner = "juruen";
+ owner = "ddvk";
repo = "rmapi";
rev = "v${version}";
- sha256 = "sha256-7pwCd9tey7w5B8UgsMLHegPqmmY1prLM+Sk9o42X9lY=";
+ sha256 = "sha256-nwGTBCzA9+J3S3Gd3YgwCWAj/gMcoS19awluDZWZCbU=";
};
- vendorHash = "sha256-Id2RaiSxthyR6egDQz2zulbSZ4STRTaA3yQIr6Mx9kg=";
+ vendorHash = "sha256-5m3/XFyBEWM8UB3WylkBj+QWI5XsnlVD4K3BhKVVCB4=";
doCheck = false;
meta = with lib; {
description = "Go app that allows access to the ReMarkable Cloud API programmatically";
- homepage = "https://github.com/juruen/rmapi";
- changelog = "https://github.com/juruen/rmapi/blob/v${version}/CHANGELOG.md";
+ homepage = "https://github.com/ddvk/rmapi";
+ changelog = "https://github.com/ddvk/rmapi/blob/v${version}/CHANGELOG.md";
license = licenses.agpl3Only;
maintainers = [ maintainers.nickhu ];
mainProgram = "rmapi";