3
0
Fork 0
forked from mirrors/nixpkgs

hermit: init at 2.0

This commit is contained in:
Will Dietz 2019-01-17 15:16:55 -06:00
parent e441581b13
commit a3f86e0156
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "hermit";
version = "2.0";
src = fetchurl {
url = "https://pcaro.es/d/otf-${pname}-${version}.tar.gz";
sha256 = "09rmy3sbf1j1hr8zidighjgqc8kp0wsra115y27vrnlf10ml6jy0";
};
sourceRoot = ".";
dontBuild = true;
installPhase = ''
mkdir -p $out/share/fonts/opentype
cp *.otf $out/share/fonts/opentype/
'';
meta = with stdenv.lib; {
description = "monospace font designed to be clear, pragmatic and very readable";
homepage = https://pcaro.es/p/hermit;
license = licenses.ofl;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}

View file

@ -15570,6 +15570,8 @@ in
hanazono = callPackage ../data/fonts/hanazono { };
hermit = callPackage ../data/fonts/hermit { };
hyperscrypt-font = callPackage ../data/fonts/hyperscrypt { };
ia-writer-duospace = callPackage ../data/fonts/ia-writer-duospace { };