about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix')
-rw-r--r--nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix b/nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix
new file mode 100644
index 000000000000..1c64c3227c51
--- /dev/null
+++ b/nixpkgs/pkgs/data/fonts/glasstty-ttf/default.nix
@@ -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
+''