martian-mono: init at 0.9.1
This commit is contained in:
parent
6642461162
commit
d3afad859a
35
pkgs/data/fonts/martian-mono/default.nix
Normal file
35
pkgs/data/fonts/martian-mono/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -26604,6 +26604,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user