Commit b14fa657 authored by Paul Meyer's avatar Paul Meyer
Browse files

grmon: use finalAttrs

parent 34274ebb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5,14 +5,14 @@
  nix-update-script,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "grmon";
  version = "0.1";

  src = fetchFromGitHub {
    owner = "bcicen";
    repo = "grmon";
    rev = "v${version}";
    rev = "v${finalAttrs.version}";
    hash = "sha256-0J7f4DMADUut3Da0F1eTDsT1Hlk0rfInwzbcVcQNzg8=";
  };

@@ -35,4 +35,4 @@ buildGoModule rec {
    mainProgram = "grmon";
    maintainers = with maintainers; [ katexochen ];
  };
}
})