summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-08-14 22:31:42 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-08-14 22:31:42 -0500
commit20d6f873f090ef430db3201e427fb62d9f9ddc35 (patch)
treed318a721f0f2f1957b01142e8df137ee82804051
parent8bdc291d8f00df0b5cabfcc6c868fd1cc212571e (diff)
parentf0a11cd1eb428df09cd3080241d7ae56092927bd (diff)
downloadnixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar.gz
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar.bz2
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar.lz
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar.xz
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.tar.zst
nixlib-20d6f873f090ef430db3201e427fb62d9f9ddc35.zip
Merge branch 'ipe'
-rw-r--r--pkgs/applications/graphics/ipe/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/ipe/default.nix b/pkgs/applications/graphics/ipe/default.nix
index 53df14f8704f..ede0dc07afb8 100644
--- a/pkgs/applications/graphics/ipe/default.nix
+++ b/pkgs/applications/graphics/ipe/default.nix
@@ -1,12 +1,13 @@
 { stdenv, fetchurl, pkgconfig, zlib, qt4, freetype, cairo, lua5, texLive, ghostscriptX
+, libjpeg
 , makeWrapper }:
 let ghostscript = ghostscriptX; in
 stdenv.mkDerivation rec {
-  name = "ipe-7.1.2";
+  name = "ipe-7.1.8";
 
   src = fetchurl {
-    url = "mirror://sourceforge/ipe7/ipe/7.1.0/${name}-src.tar.gz";
-    sha256 = "04fs5slci3bmpgz8d038h3hnzzdw57xykcpsmisdxci2xrkxx41k";
+    url = "http://github.com/otfried/ipe/raw/master/releases/7.1/${name}-src.tar.gz";
+    sha256 = "1zx6dyr1rb6m6rvawagg9f8bc2li9nbighv2dglzjbh11bxqsyva";
   };
 
   # changes taken from Gentoo portage
@@ -21,9 +22,10 @@ stdenv.mkDerivation rec {
 
   IPEPREFIX="$$out";
   URWFONTDIR="${texLive}/texmf-dist/fonts/type1/urw/";
+  LUA_PACKAGE = "lua";
 
   buildInputs = [
-    pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
+    libjpeg pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
   ];
 
   postInstall = ''
@@ -36,12 +38,14 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "An editor for drawing figures";
-    homepage = http://ipe7.sourceforge.net;
+    homepage = http://ipe.otfried.org;
     license = stdenv.lib.licenses.gpl3Plus;
     longDescription = ''
       Ipe is an extensible drawing editor for creating figures in PDF and Postscript format.
       It supports making small figures for inclusion into LaTeX-documents
       as well as presentations in PDF.
     '';
+    maintainers = [ stdenv.lib.maintainers.ttuegel ];
+    platforms = stdenv.lib.platforms.linux;
   };
 }