c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
25 lines
693 B
Nix
25 lines
693 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "rmapi";
|
|
version = "0.0.21";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "juruen";
|
|
repo = "rmapi";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-PObuO+Aea2MS1DW3/uOS7GajtFUPolDnPgwxYehGPlA=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-LmKcHV0aq7NDEwaL+u8zXkbKzzdWD8zmnAGw5xShDYo=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A 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";
|
|
license = licenses.agpl3Only;
|
|
maintainers = [ maintainers.nickhu ];
|
|
};
|
|
}
|