about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/unscii/default.nix
blob: cd4d0dc42cddf01e18636c6dc693cae00413dde2 (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
29
30
31
32
{stdenv, fetchurl, perl, bdftopcf, perlPackages, fontforge, SDL, SDL_image}:
stdenv.mkDerivation rec {
  pname = "unscii";
  version = "1.1";
  # or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
  src = fetchurl {
    url = "http://pelulamu.net/${pname}/${pname}-${version}-src.tar.gz";
    sha256 = "0qcxcnqz2nlwfzlrn115kkp3n8dd7593h762vxs6vfqm13i39lq1";
  };
  nativeBuildInputs = [perl bdftopcf perlPackages.TextCharWidth fontforge
    SDL SDL_image];
  preConfigure = ''
    patchShebangs .
  '';
  installPhase = ''
    install -m444 -Dt $out/share/fonts          *.hex *.pcf
    install -m444 -Dt $out/share/fonts/truetype *.ttf
    install -m444 -Dt $out/share/fonts/opentype *.otf
    install -m444 -Dt $out/share/fonts/svg      *.svg
    install -m444 -Dt $out/share/fonts/web      *.woff
  '';

  meta = {
    inherit version;
    description = ''Bitmapped character-art-friendly Unicode fonts'';
    # Basically GPL2+ with font exception — because of the Unifont-augmented
    # version. The reduced version is public domain.
    license = http://unifoundry.com/LICENSE.txt;
    maintainers = [stdenv.lib.maintainers.raskin];
    homepage = http://pelulamu.net/unscii/;
  };
}