about summary refs log tree commit diff
path: root/pkgs/by-name/ui/uiua386/package.nix
blob: aa659df3b4deeacd8d2b358cbb903b85a720c3b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenvNoCC, uiua }:

stdenvNoCC.mkDerivation {
  pname = "uiua386";

  inherit (uiua) src version;

  installPhase = ''
    runHook preInstall

    install -Dm444 -t $out/share/fonts/truetype ./site/Uiua386.ttf

    runHook postInstall
  '';

  meta = {
    description = "A Uiua font";
    homepage = "https://uiua.org/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ skykanin ];
    platforms = lib.platforms.all;
  };
}