refactor(repo): change a bunch of everything
This commit is contained in:
parent
81f367e3aa
commit
81bee82c34
26 changed files with 352 additions and 127 deletions
22
packages/fairfax/default.nix
Normal file
22
packages/fairfax/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue