forked from mirrors/nixpkgs
hermit: init at 2.0
This commit is contained in:
parent
e441581b13
commit
a3f86e0156
28
pkgs/data/fonts/hermit/default.nix
Normal file
28
pkgs/data/fonts/hermit/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue