summary refs log tree commit diff
path: root/pkgs/development/libraries/freetype/default.nix
blob: 433cc812c210534b587fa92d57cb715af67d2f71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "freetype-2.3.5";
  
  src = fetchurl {
    url = mirror://sourceforge/freetype/freetype-2.3.5.tar.bz2;
    sha256 = "0zk73lj0rrq4ahg4lfh6qzgs7agsqda3hpnjvy08riq624x7ld8v";
  };

  meta = {
    description = "A font engine";
    homepage = http://www.freetype.org/;
  };
}