FrameworkNix/theming/fonts/impact/default.nix

20 lines
417 B
Nix
Raw Permalink Normal View History

2024-04-08 18:22:35 +00:00
{ lib, stdenvNoCC, fetchzip }:
stdenvNoCC.mkDerivation rec {
pname = "impact";
version = "1.0";
src = fetchzip {
url = "https://cloud.hermitcollective.net/s/ZMnTCgLd9NJyZ7W/download/Impact-Font.zip";
hash = "sha256-qe0NjS2Vevuzs2YmIAJBwogPwEM4edYZ6Oxkufe+QBc=";
};
installPhase = ''
runHook preInstall
install -Dm644 ./*.otf -t $out/share/fonts/opentype
runHook postInstall
'';
}