Unverified Commit a08650d2 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

nvrh: 0.1.15 -> 0.1.17 (#423983)

parents 046b4e9f f881e38b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -6,15 +6,15 @@
  nix-update-script,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "nvrh";
  version = "0.1.15";
  version = "0.1.17";

  src = fetchFromGitHub {
    owner = "mikew";
    repo = "nvrh";
    tag = "v${version}";
    hash = "sha256-FLlSS/ZgoGT4SyBG/sKdrN3eBSJdT0qFeGl01y4P/So=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-5LkDbLKz4phSOsKqdzC/tMHqdXy+c5chBsXwWso/Wsk=";
  };

  postPatch = ''
@@ -50,9 +50,9 @@ buildGoModule rec {
  meta = {
    description = "Aims to be similar to VSCode Remote, but for Neovim";
    homepage = "https://github.com/mikew/nvrh";
    changelog = "https://github.com/mikew/nvrh/blob/${src.rev}/CHANGELOG.md";
    changelog = "https://github.com/mikew/nvrh/blob/${finalAttrs.src.rev}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
    mainProgram = "nvrh";
  };
}
})