Merge pull request #120128 from sophrosyne97/master

termsyn: init at 1.8.7
This commit is contained in:
Luke Granger-Brown 2021-04-25 15:06:33 +01:00 committed by GitHub
commit 4ac8826b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchurl, mkfontscale }:
stdenv.mkDerivation rec {
pname = "termsyn";
version = "1.8.7";
src = fetchurl {
url = "mirror://sourceforge/termsyn/termsyn-${version}.tar.gz";
sha256 = "15vsmc3nmzl0pkgdpr2993da7p38fiw2rvcg01pwldzmpqrmkpn6";
};
nativeBuildInputs = [ mkfontscale ];
installPhase = ''
install -m 644 -D *.pcf -t "$out/share/fonts"
install -m 644 -D *.psfu -t "$out/share/kbd/consolefonts"
mkfontdir "$out/share/fonts"
'';
meta = with lib; {
description = "Monospaced font based on terminus and tamsyn";
homepage = "https://sourceforge.net/projects/termsyn/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ sophrosyne ];
};
}

View File

@ -912,6 +912,8 @@ in
inherit (haskellPackages) ghcWithPackages;
};
termsyn = callPackage ../data/fonts/termsyn { };
tilda = callPackage ../applications/terminal-emulators/tilda {
gtk = gtk3;
};