mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
456 B
Nix
24 lines
456 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 = "Uiua font";
|
|
homepage = "https://uiua.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ skykanin ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|