Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0e3cd61ac9fa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a7064e23973b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 20, 2021

  1. rmapi: 0.0.13 -> 0.0.15 (#123672)

    (cherry picked from commit 2d16660)
    benneti authored and NickHu committed May 20, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    NickHu Nick Hu
    Copy the full SHA
    a7064e2 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/misc/remarkable/rmapi/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/misc/remarkable/rmapi/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,24 @@

buildGoModule rec {
pname = "rmapi";
version = "0.0.12";
version = "0.0.15";

src = fetchFromGitHub {
owner = "juruen";
repo = "rmapi";
rev = "v${version}";
sha256 = "049m0p4wbsl822iym8xmc938d4k90iw7wjdzcxfyy8d27hv9mp45";
sha256 = "sha256-ju54JSd3Zyye5YGLPEOkhY93ONh0b7eDSnvJlIawizE=";
};

vendorSha256 = "077s13pcql5w2m6wzls1q06r7p501kazbwzxgfh6akwza15kb4is";
vendorSha256 = "sha256-SE/0a8QUJsWoGwkSiZqYx1eXuOIL3avJujyg8iSdcBU=";

doCheck = false;

meta = with stdenv.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.agpl3;
license = licenses.agpl3Only;
maintainers = [ maintainers.nickhu ];
};
}