martian-mono: init at 0.9.1

+37
+35
pkgs/data/fonts/martian-mono/default.nix
··· 1 + { lib, stdenvNoCC, fetchzip }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "martian-mono"; 5 + version = "0.9.2"; 6 + 7 + src = fetchzip { 8 + url = "https://github.com/evilmartians/mono/releases/download/v${version}/martian-mono-${version}-otf.zip"; 9 + sha256 = "sha256-whIR7BaEflm/VsF60Xck6ZJDLzTugaTOogHzcEtwCsM="; 10 + stripRoot = false; 11 + }; 12 + 13 + dontPatch = true; 14 + dontConfigure = true; 15 + dontBuild = true; 16 + doCheck = false; 17 + dontFixup = true; 18 + 19 + installPhase = '' 20 + runHook preInstall 21 + 22 + install -Dm644 -t $out/share/fonts/opentype/ *.otf 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = with lib; { 28 + description = "Free and open-source monospaced font from Evil Martians"; 29 + homepage = "https://github.com/evilmartians/mono"; 30 + changelog = "https://github.com/evilmartians/mono/raw/v${version}/Changelog.md"; 31 + license = licenses.ofl; 32 + maintainers = [ maintainers.marsam ]; 33 + platforms = platforms.all; 34 + }; 35 + }
+2
pkgs/top-level/all-packages.nix
··· 26604 26604 26605 26605 manrope = callPackage ../data/fonts/manrope { }; 26606 26606 26607 + martian-mono = callPackage ../data/fonts/martian-mono { }; 26608 + 26607 26609 marwaita = callPackage ../data/themes/marwaita { }; 26608 26610 26609 26611 marwaita-manjaro = callPackage ../data/themes/marwaita-manjaro { };