segoe-ui-ttf: init

This commit is contained in:
Jordan Holt 2025-03-24 14:51:37 +00:00
parent 74a2071e9a
commit 0acff8a5ab
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -0,0 +1,20 @@
{
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "segoe-ui";
version = "unstable-2024-05-16";
src = fetchFromGitHub {
owner = "mrbvrz";
repo = "segoe-ui-linux";
rev = "a89213b7136da6dd5c3638db1f2c6e814c40fa84";
hash = "sha256-0KXfNu/J1/OUnj0jeQDnYgTdeAIHcV+M+vCPie6AZcU=";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
install -m644 $src/font/*.ttf $out/share/fonts/truetype/
'';
}