Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

lbreakouthd: change self to finalAttrs

+3 -3
+3 -3
pkgs/games/lgames/lbreakouthd/default.nix
··· 8 8 , SDL2_ttf 9 9 }: 10 10 11 - stdenv.mkDerivation (self: { 11 + stdenv.mkDerivation (finalAttrs: { 12 12 pname = "lbreakouthd"; 13 13 version = "1.1.2"; 14 14 15 15 src = fetchurl { 16 - url = "mirror://sourceforge/lgames/lbreakouthd-${self.version}.tar.gz"; 16 + url = "mirror://sourceforge/lgames/lbreakouthd-${finalAttrs.version}.tar.gz"; 17 17 hash = "sha256-fK7w5uS7zPJnbEmY3YpxoA9cGuooQbVlDB9Mu6yB8hw="; 18 18 }; 19 19 ··· 27 27 hardeningDisable = [ "format" ]; 28 28 29 29 passthru.updateScript = directoryListingUpdater { 30 - inherit (self) pname version; 30 + inherit (finalAttrs) pname version; 31 31 url = "https://lgames.sourceforge.io/LBreakoutHD/"; 32 32 extraRegex = "(?!.*-win(32|64)).*"; 33 33 };