pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / lo / lora / package.nix
bloba062c11e04d0da660ad9466f96fc523aad77a994
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5   nix-update-script,
6 }:
8 stdenvNoCC.mkDerivation rec {
9   pname = "lora";
10   version = "v3.005";
12   src = fetchFromGitHub {
13     owner = "cyrealtype";
14     repo = "lora";
15     rev = version;
16     hash = "sha256-EHa8DUPFRvdYBdCY41gfjKGtTHwGIXCwD9Qc+Npmt1s=";
17   };
19   dontConfigure = true;
20   dontBuild = true;
22   passthru.updateScript = nix-update-script { };
24   installPhase = ''
25     runHook preInstall
27     mkdir -p $out/share/fonts/truetype
28     cp -R $src/fonts/ttf/*.ttf $out/share/fonts/truetype
30     runHook postInstall
31   '';
33   meta = with lib; {
34     description = "Lora is a well-balanced contemporary serif with roots in calligraphy";
35     homepage = "https://github.com/cyrealtype/lora";
36     license = licenses.ofl;
37     platforms = platforms.all;
38     maintainers = with maintainers; [ ofalvai ];
39   };