forked from Shinonome/nixos-fonts
added gabarito
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
...
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
pname = "space-grotesk";
|
||||
version = "2.0.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "naipefoundry";
|
||||
repo = "gabarito";
|
||||
rev = "1.000";
|
||||
sha256 = "sha256-frHmgB3CU+YACIMj0kdeAwrUoVAOZL2xj80fmoHdMao=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -Dm644 $src/fonts/ttf/*.otf -t $out/share/fonts/truetype
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user