0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

grmon: use finalAttrs

Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
Paul Meyer 2025-04-11 13:00:19 +02:00
parent 34274ebbd8
commit b14fa65751

View file

@ -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 ];
};
}
})