summary refs log tree commit diff
path: root/pkgs/applications/graphics/ipe
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-07 05:50:02 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-07 05:50:02 -0600
commit4b950d233e98d497f592a4e03f262475236dd743 (patch)
tree8c01e92d23da732b15cd7c3b462d700288c330aa /pkgs/applications/graphics/ipe
parent8a0f2e7025d1682f793f67f9364564851448479e (diff)
downloadnixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar.gz
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar.bz2
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar.lz
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar.xz
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.tar.zst
nixpkgs-4b950d233e98d497f592a4e03f262475236dd743.zip
ipe: 7.1.8 -> 7.1.10
Diffstat (limited to 'pkgs/applications/graphics/ipe')
-rw-r--r--pkgs/applications/graphics/ipe/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/ipe/default.nix b/pkgs/applications/graphics/ipe/default.nix
index ede0dc07afb..9f1f53abc5c 100644
--- a/pkgs/applications/graphics/ipe/default.nix
+++ b/pkgs/applications/graphics/ipe/default.nix
@@ -1,13 +1,13 @@
-{ stdenv, fetchurl, pkgconfig, zlib, qt4, freetype, cairo, lua5, texLive, ghostscriptX
-, libjpeg
+{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texLive, ghostscriptX
+, libjpeg, qtbase
 , makeWrapper }:
 let ghostscript = ghostscriptX; in
 stdenv.mkDerivation rec {
-  name = "ipe-7.1.8";
+  name = "ipe-7.1.10";
 
   src = fetchurl {
-    url = "http://github.com/otfried/ipe/raw/master/releases/7.1/${name}-src.tar.gz";
-    sha256 = "1zx6dyr1rb6m6rvawagg9f8bc2li9nbighv2dglzjbh11bxqsyva";
+    url = "https://dl.bintray.com/otfried/generic/ipe/7.1/${name}-src.tar.gz";
+    sha256 = "0kwk8l2jasb4fdixaca08g661d0sdmx2jkk3ch7pxh0f4xkdxkkz";
   };
 
   # changes taken from Gentoo portage
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
   LUA_PACKAGE = "lua";
 
   buildInputs = [
-    libjpeg pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
+    libjpeg pkgconfig zlib qtbase freetype cairo lua5 texLive ghostscript makeWrapper
   ];
 
   postInstall = ''