notonoto: init at 0.0.3 (#355067)

authored by

Sandro and committed by
GitHub
e46e1374 906f3ffa

+33
+33
pkgs/by-name/no/notonoto/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + stdenvNoCC, 5 + }: 6 + stdenvNoCC.mkDerivation rec { 7 + pname = "notonoto"; 8 + version = "0.0.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "yuru7"; 12 + repo = "NOTONOTO"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-1dbx4yC8gL41OEAE/LNDyoDb4xhAwV5h8oRmdlPULUo="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + find . -name '*.ttf' -exec install -m444 -Dt $out/share/fonts/notonoto {} \; 21 + 22 + runHook postInstall 23 + ''; 24 + 25 + meta = { 26 + description = "Programming font that combines Noto Sans Mono and Noto Sans JP"; 27 + homepage = "https://github.com/yuru7/NOTONOTO"; 28 + license = lib.licenses.ofl; 29 + maintainers = with lib.maintainers; [ genga898 ]; 30 + mainProgram = "notonoto"; 31 + }; 32 + 33 + }