chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / qu / quinze / package.nix
blobdd029db212370ab672a13b57704e01dbdeb1e3ab
1 { lib, stdenvNoCC, fetchzip }:
3 stdenvNoCC.mkDerivation {
4   name = "quinze";
5   version = "2018-09-22";
7   src = fetchzip {
8     url = "https://fontlibrary.org/assets/downloads/quinze/0271bb7be00ea75dcfa06ef7c7f1054e/quinze.zip";
9     hash = "sha256-6C6drbAHme38tF2PtY/YFDdHCbR0JURs4F/K+KZqKiQ=";
10     stripRoot = false;
11   };
13   installPhase = ''
14     runHook preInstall
16     install -m444 -Dt $out/share/fonts/truetype *.ttf
18     runHook postInstall
19   '';
21   meta = with lib; {
22     description = "narrow monospaced font, designed to fit a fifteen pixel bitmap";
23     homepage = "https://fontlibrary.org/en/font/quinze";
24     license = licenses.ofl;
25     maintainers = with maintainers; [ phunehehe ];
26     platforms = platforms.all;
27   };