chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ud / udev-gothic-nf / package.nix
blob6b1b744ad2ec74f134137889c1e54f548891ef94
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "udev-gothic-nf";
5   version = "2.0.0";
7   src = fetchzip {
8     url = "https://github.com/yuru7/udev-gothic/releases/download/v${version}/UDEVGothic_NF_v${version}.zip";
9     hash = "sha256-u3iv5IilWysw9v8v4AfN7ucNM+eNbKVR2kfQn7JH/AM=";
10   };
12   installPhase = ''
13     runHook preInstall
14     install -Dm644 *.ttf -t $out/share/fonts/udev-gothic-nf
15     runHook postInstall
16   '';
18   meta = with lib; {
19     description = "Programming font that combines BIZ UD Gothic, JetBrains Mono and nerd-fonts";
20     homepage = "https://github.com/yuru7/udev-gothic";
21     license = licenses.ofl;
22     maintainers = with maintainers; [ haruki7049 ];
23     platforms = platforms.all;
24   };