summary refs log tree commit diff
path: root/pkgs/data/fonts/libertine/2.7.bin.nix
blob: c88659e4371a02a67c3e65f61a3638e9d9d73519 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;
rec{
  src = fetchurl {
    url = http://downloads.sourceforge.net/linuxlibertine/LinLibertineFont-2.7.tgz;
    sha256 = "06xm3np2xx41fr2yc00q0z2qy9s6p860f18ns1f1f00vi54dm4c5";
  };

  buildInputs = [];
  phaseNames = ["doUnpack" "installFonts"];

  name = "linux-libertine-" + version;
  meta = {
    description = "Linux Libertine Fonts";
    homepage = http://linuxlibertine.sf.net;
  };
}