Unverified Commit d5c74abf authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #193637 from marsam/init-martian-mono

martian-mono: init at 0.9.1
parents fe627f92 d3afad85
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ lib, stdenvNoCC, fetchzip }:

stdenvNoCC.mkDerivation rec {
  pname = "martian-mono";
  version = "0.9.2";

  src = fetchzip {
    url = "https://github.com/evilmartians/mono/releases/download/v${version}/martian-mono-${version}-otf.zip";
    sha256 = "sha256-whIR7BaEflm/VsF60Xck6ZJDLzTugaTOogHzcEtwCsM=";
    stripRoot = false;
  };

  dontPatch = true;
  dontConfigure = true;
  dontBuild = true;
  doCheck = false;
  dontFixup = true;

  installPhase = ''
    runHook preInstall

    install -Dm644 -t $out/share/fonts/opentype/ *.otf

    runHook postInstall
  '';

  meta = with lib; {
    description = "Free and open-source monospaced font from Evil Martians";
    homepage = "https://github.com/evilmartians/mono";
    changelog = "https://github.com/evilmartians/mono/raw/v${version}/Changelog.md";
    license = licenses.ofl;
    maintainers = [ maintainers.marsam ];
    platforms = platforms.all;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -26605,6 +26605,8 @@ with pkgs;
  manrope = callPackage ../data/fonts/manrope { };
  martian-mono = callPackage ../data/fonts/martian-mono { };
  marwaita = callPackage ../data/themes/marwaita { };
  marwaita-manjaro = callPackage ../data/themes/marwaita-manjaro { };