lol
fork

Configure Feed

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

at 23.05-pre 29 lines 826 B view raw
1{ lib, fetchzip }: 2 3let 4 version = "2.138"; 5in fetchzip { 6 name = "roboto-${version}"; 7 8 url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip"; 9 10 postFetch = '' 11 mkdir -p $out/share/fonts 12 unzip -j $downloadedFile \*.ttf -x __MACOSX/\* -d $out/share/fonts/truetype 13 ''; 14 15 sha256 = "1s3c48wwvvwd3p4w3hfkri5v2c54j2bdxmd3bjv54klc5mrlh6z3"; 16 17 meta = { 18 homepage = "https://github.com/google/roboto"; 19 description = "The Roboto family of fonts"; 20 longDescription = '' 21 Googles signature family of fonts, the default font on Android and 22 Chrome OS, and the recommended font for Googles visual language, 23 Material Design. 24 ''; 25 license = lib.licenses.asl20; 26 platforms = lib.platforms.all; 27 maintainers = [ lib.maintainers.romildo ]; 28 }; 29}