profont: init

This commit is contained in:
Myrl Hex
2016-04-13 22:42:06 +08:00
committed by Nikolay Amiantov
parent 21d6e4beba
commit c73d14a39f
4 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "profont";
src = fetchurl {
url = "http://tobiasjung.name/downloadfile.php?file=profont-x11.zip";
sha256 = "19ww5iayxzxxgixa9hgb842xd970mwghxfz2vsicp8wfwjh6pawr";
};
buildInputs = [ unzip ];
phases = [ "unpackPhase" "installPhase" ];
installPhase =
''
mkdir -p $out/share/doc/$name $out/share/fonts/misc
cp LICENSE $out/share/doc/$name/LICENSE
for f in *.pcf; do
gzip -c "$f" > $out/share/fonts/misc/"$f".gz
done
'';
meta = with stdenv.lib; {
homepage = http://tobiasjung.name;
description = "A monospaced font created to be a most readable font for programming";
maintainers = with stdenv.lib.maintainers; [ myrl ];
license = licenses.mit;
platforms = platforms.all;
};
}

View File

@@ -36,5 +36,6 @@ stdenv.mkDerivation rec {
description = "A set of fixed-width screen fonts that are designed for code listings";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.myrl ];
};
}