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
31 lines
715 B
Nix
31 lines
715 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "rmapi";
|
|
version = "0.0.31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ddvk";
|
|
repo = "rmapi";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8OzDXOyyz0VTeJg0P6jOBTA9OZbCLSK8SASSEHsrBxc=";
|
|
};
|
|
|
|
vendorHash = "sha256-Qisfw+lCFZns13jRe9NskCaCKVj5bV1CV8WPpGBhKFc=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Go app that allows access to the ReMarkable Cloud API programmatically";
|
|
homepage = "https://github.com/ddvk/rmapi";
|
|
changelog = "https://github.com/ddvk/rmapi/blob/v${version}/CHANGELOG.md";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = [ lib.maintainers.nickhu ];
|
|
mainProgram = "rmapi";
|
|
};
|
|
}
|