{ lib, stdenvNoCC, fetchzip }: stdenvNoCC.mkDerivation rec { pname = "inter"; version = "4.0"; src = fetchzip { url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip"; stripRoot = false; hash = "sha256-hFK7xFJt69n+98+juWgMvt+zeB9nDkc8nsR8vohrFIc="; }; installPhase = '' runHook preInstall mkdir -p $out/share/fonts/truetype cp Inter.ttc InterVariable*.ttf $out/share/fonts/truetype runHook postInstall ''; meta = with lib; { homepage = "https://rsms.me/inter/"; description = "A typeface specially designed for user interfaces"; license = licenses.ofl; platforms = platforms.all; maintainers = with maintainers; [ demize dtzWill ]; }; }