Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
667 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation rec {
pname = "mononoki";
version = "1.6";
src = fetchzip {
url = "https://github.com/madmalik/mononoki/releases/download/${version}/mononoki.zip";
stripRoot = false;
hash = "sha256-HQM9rzIJXLOScPEXZu0MzRlblLfbVVNJ+YvpONxXuwQ=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/mononoki
cp * $out/share/fonts/mononoki
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/madmalik/mononoki";
description = "Font for programming and code review";
license = licenses.ofl;
platforms = platforms.all;
};
}