Skip to content

Commit

Permalink
terminus-font-ttf: init at 4.40.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Okasu committed Nov 28, 2016
1 parent 69e6495 commit de925e9
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -323,6 +323,7 @@
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
odi = "Oliver Dunkl <oliver.dunkl@gmail.com>";
offline = "Jaka Hudoklin <jakahudoklin@gmail.com>";
okasu = "Okasu <oka.sux@gmail.com>";
olcai = "Erik Timan <dev@timan.info>";
olejorgenb = "Ole Jørgen Brønner <olejorgenb@yahoo.no>";
orbekk = "KJ Ørbekk <kjetil.orbekk@gmail.com>";
Expand Down
34 changes: 34 additions & 0 deletions pkgs/data/fonts/terminus-font-ttf/default.nix
@@ -0,0 +1,34 @@
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
name = "terminus-font-ttf-${version}";
version = "4.40.1";

src = fetchurl {
url = "http://files.ax86.net/terminus-ttf/files/${version}/terminus-ttf-${version}.zip";
sha256 = "c3cb690c2935123035a0b1f3bfdd9511c282dab489cd423e161a47c592edf188";
};

buildInputs = [unzip];

installPhase = ''
for i in *.ttf; do
local destname="$(echo "$i" | sed -E 's|-[[:digit:].]+\.ttf$|.ttf|')"
install -Dm 644 "$i" "$out/share/fonts/truetype/$destname"
done
install -Dm 644 COPYING "$out/share/doc/COPYING"
'';

meta = with stdenv.lib; {
description = "A clean fixed width TTF font";
longDescription = ''
Monospaced bitmap font designed for long work with computers
(TTF version, mainly for Java applications)
'';
homepage = http://files.ax86.net/terminus-ttf;
license = licenses.ofl;
maintainers = with maintainers; [ okasu ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -17602,4 +17602,6 @@ in
fpm2 = callPackage ../tools/security/fpm2 { };

simplenote = callPackage ../applications/misc/simplenote { };

terminus_font_ttf = callPackage ../data/fonts/terminus-font-ttf { };
}

0 comments on commit de925e9

Please sign in to comment.