rmfakecloud 0.0.12 -> 0.0.13.2 https://github.com/ddvk/rmfakecloud/releases attrpath: rmfakecloud Checking auto update branch... No auto update branch exists Old version 0.0.12" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, callPackage, enableWebui ? true }: buildGoModule rec { pname = "rmfakecloud"; version = "0.0.13.2"; src = fetchFromGitHub { owner = "ddvk"; repo = pname; rev = "v${version}"; sha256 = "sha256-7lVNbqQv6MNIhHMFbH8VFVIjKiuTCbeVkAKeGprzrkw="; }; vendorSha256 = "sha256-Pz/TtGjwGHaDSueBEHMtHjyAxYO5V+8jzXCowHcUW/4="; ui = callPackage ./webui.nix { inherit version src; }; postPatch = if enableWebui then '' mkdir -p ui/build cp -r ${ui}/* ui/build '' else '' sed -i '/go:/d' ui/assets.go ''; ldflags = [ "-s" "-w" "-X main.version=v${version}" ]; meta = with lib; { description = "Host your own cloud for the Remarkable"; homepage = "https://ddvk.github.io/rmfakecloud/"; license = licenses.agpl3Only; maintainers = with maintainers; [ pacien martinetd ]; }; }