mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
23 lines
458 B
Nix
23 lines
458 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 = "A Uiua font";
|
|
homepage = "https://uiua.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ skykanin ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|