This commit is contained in:
alsaiduq-lab 2026-01-15 13:13:37 -07:00
parent 15a97c9562
commit 008d5c15c0
3 changed files with 54 additions and 56 deletions

View file

@ -2,26 +2,25 @@
pkgs,
lib,
...
}: {
clear-sans = pkgs.stdenv.mkDerivation {
pname = "clear-sans";
version = "1.0";
src = pkgs.fetchFromGitHub {
owner = "intel";
repo = "clear-sans";
rev = "main";
sha256 = "sha256-+xdetdE3Z4NlrWiEYCUO5bmf06g/+p5blkkNk+XcruQ=";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp TTF/*.ttf $out/share/fonts/truetype/
'';
meta = with lib; {
description = "Clear Sans font";
homepage = "https://github.com/intel/clear-sans";
license = licenses.asl20;
maintainers = [cobray];
platforms = platforms.all;
};
}:
pkgs.stdenv.mkDerivation {
pname = "clear-sans";
version = "1.0";
src = pkgs.fetchFromGitHub {
owner = "intel";
repo = "clear-sans";
rev = "main";
sha256 = "sha256-+xdetdE3Z4NlrWiEYCUO5bmf06g/+p5blkkNk+XcruQ=";
};
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp TTF/*.ttf $out/share/fonts/truetype/
'';
meta = with lib; {
description = "Clear Sans font";
homepage = "https://github.com/intel/clear-sans";
license = licenses.asl20;
maintainers = [cobray];
platforms = platforms.all;
};
}