summary refs log tree commit diff
path: root/pkgs/data/fonts/ttf-envy-code-r/default.nix
blob: 6b178de137d81f258fe938339903c5ef1485f714 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "ttf-envy-code-r";
  version = "PR7";

  src = fetchurl {
    url = "http://download.damieng.com/fonts/original/EnvyCodeR-${version}.zip";
    sha256 = "9f7e9703aaf21110b4e1a54d954d57d4092727546348598a5a8e8101e4597aff";
  };

  buildInputs = [unzip];

  installPhase = ''
    for f in *.ttf; do
        install -Dm 644 "$f" "$out/share/fonts/truetype/$f"
    done
    install -Dm 644 Read\ Me.txt "$out/share/doc/readme.txt"
  '';

  meta = with stdenv.lib; {
    homepage = http://damieng.com/blog/tag/envy-code-r;
    description = "Free scalable coding font by DamienG";
    license = licenses.unfree;
    platforms = platforms.linux;
    maintainers = [ maintainers.lyt ];
  };
}