Commit efff1bce authored by SkohTV's avatar SkohTV
Browse files

jost: switch to finalAttrs

parent e3b7d871
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})