b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
23 lines
459 B
Nix
23 lines
459 B
Nix
{ 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 = "An Uiua font";
|
|
homepage = "https://uiua.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ skykanin ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|