mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
30 lines
740 B
Nix
30 lines
740 B
Nix
{ lib, fetchzip }:
|
|
|
|
fetchzip {
|
|
name = "profont";
|
|
|
|
url = "http://web.archive.org/web/20160707013914/http://tobiasjung.name/downloadfile.php?file=profont-x11.zip";
|
|
|
|
postFetch = ''
|
|
unzip -j $downloadedFile
|
|
|
|
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
|
|
'';
|
|
|
|
sha256 = "1calqmvrfv068w61f614la8mg8szas6m5i9s0lsmwjhb4qwjyxbw";
|
|
|
|
meta = with lib; {
|
|
homepage = http://tobiasjung.name;
|
|
description = "A monospaced font created to be a most readable font for programming";
|
|
maintainers = with lib.maintainers; [ myrl ];
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|