nixpkgs/pkgs/by-name/ui/uiua386/package.nix

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

24 lines
465 B
Nix
Raw Normal View History

2023-10-16 20:06:43 +01:00
{ lib, stdenvNoCC, uiua }:
stdenvNoCC.mkDerivation {
pname = "uiua386";
inherit (uiua) src version;
installPhase = ''
runHook preInstall
2024-10-23 21:24:53 +01:00
install -Dm444 -t $out/share/fonts/truetype ./src/algorithm/Uiua386.ttf
2023-10-16 20:06:43 +01:00
runHook postInstall
'';
meta = {
2023-10-30 22:48:39 +00:00
description = "Uiua font";
2023-10-16 20:06:43 +01:00
homepage = "https://uiua.org/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ skykanin ];
platforms = lib.platforms.all;
};
}