alqueva/overlays/derivations/fairfax.nix

22 lines
497 B
Nix
Raw Normal View History

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