chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mi / miracode / package.nix
blob0ffcc3cdbfc600c8807e0e7da726019e597c9070
1 { stdenvNoCC, lib, fetchurl }:
3 let
4   version = "1.0";
5 in
6 stdenvNoCC.mkDerivation {
7   pname = "miracode";
8   inherit version;
10   src = fetchurl {
11     url = "https://github.com/IdreesInc/Miracode/releases/download/v${version}/Miracode.ttf";
12     hash = "sha256-Q+/D/TPlqOt779qYS/dF7ahEd3Mm4a4G+wdHB+Gutmo=";
13   };
15   dontUnpack = true;
16   dontConfigure = true;
17   dontBuild = true;
19   installPhase = ''
20     runHook preInstall
21     install -Dm644 $src $out/share/fonts/truetype/Miracode.ttf
22     runHook postInstall
23   '';
25   meta = with lib; {
26     description = "Sharp, readable, vector-y version of Monocraft";
27     homepage = "https://github.com/IdreesInc/Miracode";
28     license = licenses.ofl;
29     platforms = platforms.all;
30     maintainers = with maintainers; [ coca ];
31   };