nixpkgs/pkgs/development/libraries/freetype/default.nix
Eelco Dolstra 607b0d3e80 * Rewrite all the SourceForge URLs to mirror://sourceforge/.
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done

svn path=/nixpkgs/trunk/; revision=9198
2007-08-27 13:01:33 +00:00

10 lines
229 B
Nix

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