{ lib, fetchFromGitHub, buildGoModule, callPackage, enableWebui ? true }: buildGoModule rec { pname = "rmfakecloud"; version = "0.0.11"; src = fetchFromGitHub { owner = "ddvk"; repo = pname; rev = "v${version}"; sha256 = "sha256-TkVwhKRTe0W5IHnxJyhW5DM8B8zU2rPUz61K7KlnJN0="; }; vendorSha256 = "sha256-NwDaPpjkQogXE37RGS3zEALlp3NuXP9RW//vbwM6y0A="; 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 ]; }; }