27 lines
629 B
Nix
27 lines
629 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
stdenv,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
name = "Cal Sans";
|
|
pname = "cal-sans";
|
|
version = "1.0.0";
|
|
src = pkgs.fetchzip {
|
|
url = "https://github.com/calcom/font/releases/download/v${version}/CalSans_Semibold_v${version}.zip";
|
|
stripRoot = false;
|
|
hash = "sha256-JqU64JUgWimJgrKX3XYcml8xsvy//K7O5clNKJRGaTM=";
|
|
};
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -m444 -Dt $out/share/fonts/truetype fonts/webfonts/*.ttf
|
|
runHook postInstall
|
|
'';
|
|
meta = with lib; {
|
|
homepage = "https://github.com/calcom/font";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|