alqages/packages/fairfax/default.nix

23 lines
519 B
Nix
Raw Permalink Normal View History

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