python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / lilex / package.nix
blobb7067502cdb688646bbe66a112baaeee355783f0
2   lib,
3   stdenvNoCC,
4   fetchurl,
5   unzip,
6 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "lilex";
9   version = "2.600";
11   src = fetchurl {
12     url = "https://github.com/mishamyrt/Lilex/releases/download/${version}/Lilex.zip";
13     hash = "sha256-G8zm35aSiXrnGgYePSwLMBzwSnd9mfCinHZSG1qBH0w=";
14   };
16   nativeBuildInputs = [ unzip ];
18   unpackPhase = ''
19     runHook preUnpack
20     unzip $src
21     runHook postUnpack
22   '';
24   installPhase = ''
25     runHook preInstall
26     find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/truetype {} +
27     runHook postInstall
28   '';
30   meta = with lib; {
31     description = "Open source programming font";
32     homepage = "https://github.com/mishamyrt/Lilex";
33     license = licenses.ofl;
34     maintainers = with maintainers; [ redyf ];
35     platforms = platforms.all;
36   };