forked from mirrors/nixpkgs
glasstty-ttf: init at 2018-08-07
This commit is contained in:
parent
10eea65c29
commit
4ed5997b2a
18
pkgs/data/fonts/glasstty-ttf/default.nix
Normal file
18
pkgs/data/fonts/glasstty-ttf/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ runCommand, fetchurl, lib }:
|
||||
runCommand "glasstty-ttf" {
|
||||
src = fetchurl {
|
||||
url = "https://github.com/svofski/glasstty/raw/2c47ac1a0065f8b12d9732257993833d8227e3e5/Glass_TTY_VT220.ttf";
|
||||
sha256 = "sha256-2NYJaSWNr1Seuqdd7nLjA7tAMs/SAvl3uAe3uDoLLO4=";
|
||||
};
|
||||
meta = with lib; {
|
||||
maintainers = [ maintainers.pkharvey ];
|
||||
homepage = "https://github.com/svofski/glasstty";
|
||||
license = licenses.unlicense;
|
||||
platforms = platforms.all;
|
||||
description = "TrueType VT220 font";
|
||||
};
|
||||
}
|
||||
''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp $src $out/share/fonts/truetype/Glass_TTY_VT220.ttf
|
||||
''
|
|
@ -2580,6 +2580,8 @@ with pkgs;
|
|||
|
||||
glasgow = with python3Packages; toPythonApplication glasgow;
|
||||
|
||||
glasstty-ttf = callPackage ../data/fonts/glasstty-ttf { };
|
||||
|
||||
gmid = callPackage ../servers/gemini/gmid { };
|
||||
|
||||
gmni = callPackage ../applications/networking/browsers/gmni { };
|
||||
|
|
Loading…
Reference in a new issue