nebula-sans: init at 1.010 (#397471)

authored by Aleksana and committed by GitHub 979af4bb d529091d

+33
+33
pkgs/by-name/ne/nebula-sans/package.nix
···
··· 1 + { 2 + lib, 3 + stdenvNoCC, 4 + fetchzip, 5 + }: 6 + 7 + stdenvNoCC.mkDerivation (finalAttrs: { 8 + pname = "nebula-sans"; 9 + version = "1.010"; 10 + 11 + src = fetchzip { 12 + url = "https://nebulasans.com/download/NebulaSans-${finalAttrs.version}.zip"; 13 + stripRoot = false; 14 + hash = "sha256-jFoHgxczU7VdZcVj7HI4OOjK28jcptu8sGOrs3O+0S0="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + mkdir -p $out/share/fonts/truetype 21 + mv TTF/*.ttf $out/share/fonts/truetype 22 + 23 + runHook postInstall 24 + ''; 25 + 26 + meta = { 27 + description = "Versatile, modern, humanist sans-serif with a neutral aesthetic, designed for legibility in both digital and print applications"; 28 + maintainers = [ lib.maintainers.colemickens ]; 29 + platforms = lib.platforms.all; 30 + homepage = "https://nebulasans.com/"; 31 + license = lib.licenses.ofl; 32 + }; 33 + })