about summary refs log tree commit diff
path: root/pkgs/applications/editors/texmacs
diff options
context:
space:
mode:
authorRussell O'Connor <roconnor@theorem.ca>2011-03-14 22:03:26 +0000
committerRussell O'Connor <roconnor@theorem.ca>2011-03-14 22:03:26 +0000
commit22fbb1f3d959a24072e864caed965c6cb37cddad (patch)
tree5691d4f25f8178b8635d5a936d7db7f5a087db3e /pkgs/applications/editors/texmacs
parent3369508fa9487997863d003bfc4e912bc76d86be (diff)
downloadnixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar.gz
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar.bz2
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar.lz
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar.xz
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.tar.zst
nixlib-22fbb1f3d959a24072e864caed965c6cb37cddad.zip
Adding freetype dependency for TeXmacs.
svn path=/nixpkgs/trunk/; revision=26306
Diffstat (limited to 'pkgs/applications/editors/texmacs')
-rw-r--r--pkgs/applications/editors/texmacs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/texmacs/default.nix b/pkgs/applications/editors/texmacs/default.nix
index bdb6c3f568f1..d765449851ad 100644
--- a/pkgs/applications/editors/texmacs/default.nix
+++ b/pkgs/applications/editors/texmacs/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, guile, libX11, libXext, xmodmap, which, makeWrapper,
+{stdenv, fetchurl, guile, libX11, libXext, xmodmap, which, makeWrapper, freetype,
  tex ? null,
  aspell ? null,
  ghostscriptX ? null,
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
     sha256 = "02gqalr775r4xyfy4bq3qq1h3pkarsxjb6ami7lgxfgmyg6ca5kn";
   };
 
-  buildInputs = [ guile libX11 libXext makeWrapper ghostscriptX ];
+  buildInputs = [ guile libX11 libXext makeWrapper ghostscriptX freetype ];
 
   patchPhase = (if tex == null then ''
     gunzip < ${fullFontsSrc} | (cd TeXmacs && tar xvf -)