Commit 978d35f3 authored by Paul Meyer's avatar Paul Meyer
Browse files

u-root: use finalAttrs

parent 270d4402
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  linux_latest,
}:

buildGoModule rec {
buildGoModule (finalAttrs: {
  pname = "u-root";
  version = "0.14.0-unstable-2024-09-26";

@@ -63,10 +63,10 @@ buildGoModule rec {
    '';
    homepage = "https://u-root.org/";
    downloadPage = "https://github.com/u-root/u-root";
    changelog = "https://github.com/u-root/u-root/blob/${src.rev}/RELEASES";
    changelog = "https://github.com/u-root/u-root/blob/${finalAttrs.src.rev}/RELEASES";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ katexochen ];
    mainProgram = "u-root";
    platforms = lib.platforms.linux;
  };
}
})