jost: switch to finalAttrs

This commit is contained in:
SkohTV
2026-04-05 17:08:56 -04:00
parent e3b7d871e2
commit efff1bce51
+3 -3
View File
@@ -5,12 +5,12 @@
installFonts,
}:
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "jost";
version = "3.5";
src = fetchzip {
url = "https://github.com/indestructible-type/Jost/releases/download/${version}/Jost.zip";
url = "https://github.com/indestructible-type/Jost/releases/download/${finalAttrs.version}/Jost.zip";
hash = "sha256-ne81bMhmTzNZ/GGIzb7nCYh19vNLK+hJ3cP/zDxtiGM=";
};
@@ -22,4 +22,4 @@ stdenvNoCC.mkDerivation rec {
license = lib.licenses.ofl;
maintainers = [ lib.maintainers.ar1a ];
};
}
})