alqueva/overlays/derivations/fairfax.nix
Artur Manuel ab8461fd06 meta: unarchiving repository
false alarm. i don't think my brother
will particularly care about his SSD
getting taken over by me, as he hasn't
cared in the past... hopefully it's
the same this time.
2024-11-11 00:48:02 +00:00

21 lines
513 B
Nix

{
stdenvNoCC,
fetchzip,
lib,
}:
stdenvNoCC.mkDerivation {
pname = "fairfax";
version = "20240601";
src = lib.cleanSourceWith {
filter = _path: type: type == "regular";
src = fetchzip {
url = "https://github.com/kreativekorp/open-relay/releases/download/2024-06-01/Fairfax.zip";
hash = "sha256-rUl/C250pJBal69ThtWhPMFe182nnZmk5UUA7eDrZeA=";
stripRoot = false;
};
};
installPhase = ''
mkdir -p $out/share/fonts/Fairfax
cp *.ttf $out/share/fonts/Fairfax
'';
}