4bdf812bc1
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
33 lines
962 B
Nix
33 lines
962 B
Nix
{ lib, stdenvNoCC, fetchFromGitHub }:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "clarity-city";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vmware";
|
|
repo = "clarity-city";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-1POSdd2ICnyNNmGadIujezNK8qvARD0kkLR4yWjs5kA=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 TrueType/*.ttf -t $out/share/fonts/truetype
|
|
install -Dm644 OpenType/*.otf -t $out/share/fonts/opentype
|
|
install -Dm644 Webfonts/EOT/*.eot -t $out/share/fonts/eot
|
|
install -Dm644 Webfonts/WOFF/*.woff -t $out/share/fonts/woff
|
|
install -Dm644 Webfonts/WOFF2/*.woff2 -t $out/share/fonts/woff2
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An open source sans-serif typeface";
|
|
homepage = "https://github.com/vmware/clarity-city";
|
|
license = licenses.ofl;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ sagikazarmark ];
|
|
};
|
|
})
|