mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
* Fontconfig updated to 2.8.0.
svn path=/nixpkgs/branches/x-updates/; revision=22644
This commit is contained in:
parent
70ab33568d
commit
02d85d19a2
|
@ -1,15 +1,15 @@
|
|||
{stdenv, fetchurl, freetype, expat}:
|
||||
{ stdenv, fetchurl, freetype, expat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fontconfig-2.7.3";
|
||||
name = "fontconfig-2.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://fontconfig.org/release/${name}.tar.gz";
|
||||
sha256 = "0l5hjifapv4v88a204ixg6w6xly81cji2cr65znra0vbbkqvz3xs";
|
||||
sha256 = "0d9370qnn1qzq0jidbycin2frkcr1kqj04jbgb79ykb5x9p1qaps";
|
||||
};
|
||||
|
||||
buildInputs = [freetype];
|
||||
propagatedBuildInputs = [expat]; # !!! shouldn't be necessary, but otherwise pango breaks
|
||||
buildInputs = [ freetype ];
|
||||
propagatedBuildInputs = [ expat ]; # !!! shouldn't be necessary, but otherwise pango breaks
|
||||
|
||||
configureFlags = "--with-confdir=/etc/fonts --with-cache-dir=/var/cache/fontconfig --disable-docs --with-default-fonts=";
|
||||
|
||||
|
|
Loading…
Reference in a new issue