diff --git a/pkgs/data/fonts/manrope/default.nix b/pkgs/data/fonts/manrope/default.nix index 7c9ab17a79d1..e42d7879af74 100644 --- a/pkgs/data/fonts/manrope/default.nix +++ b/pkgs/data/fonts/manrope/default.nix @@ -2,26 +2,33 @@ stdenvNoCC.mkDerivation rec { pname = "manrope"; - version = "3"; + version = "4.505"; src = fetchFromGitHub { owner = "sharanda"; repo = pname; - rev = "3bd68c0c325861e32704470a90dfc1868a5c37e9"; - hash = "sha256-Gm7mUD/Ud2Rf8mA3jwUL7RE8clCmb6SETOskuj6r1sw="; + rev = "d79b66b10608610692d59f4107791d249d244416"; # no tags in repo + hash = "sha256-dxnCOkPUEG0knSekolx2+SGJR81vRK0wUrbzGH4KGD0="; }; + dontPatch = true; + dontConfigure = true; + dontBuild = true; + doCheck = false; + dontFixup = true; + installPhase = '' runHook preInstall - install -Dm644 -t $out/share/fonts/opentype "desktop font"/* + install -Dm644 fonts/otf/*.otf -t $out/share/fonts/opentype + install -Dm644 fonts/ttf/*.ttf fonts/variable/*.ttf -t $out/share/fonts/truetype runHook postInstall ''; meta = with lib; { description = "Open-source modern sans-serif font family"; - homepage = "https://github.com/sharanda/manrope"; + homepage = "https://www.gent.media/manrope"; license = licenses.ofl; platforms = platforms.all; maintainers = with maintainers; [ dtzWill ];