lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 22 lines 582 B view raw
1{lib, fetchzip}: 2 3let 4 version = "3.5"; 5in fetchzip { 6 name = "jost-${version}"; 7 url = "https://github.com/indestructible-type/Jost/releases/download/${version}/Jost.zip"; 8 9 postFetch = '' 10 mkdir -p $out/share/fonts 11 unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype 12 ''; 13 14 sha256="0l78vhmbsyfmrva5wc76pskhxqryyg8q5xddpj9g5wqsddy525dq"; 15 16 meta = with lib; { 17 homepage = "https://github.com/indestructible-type/Jost"; 18 description = "A sans serif font by Indestructible Type"; 19 license = licenses.ofl; 20 maintainers = [ maintainers.ar1a ]; 21 }; 22}