aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/graphics/ipe
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-02-04 10:30:04 -0600
committerWill Dietz <w@wdtz.org>2019-02-04 10:40:36 -0600
commitf1fda2eab3fe589504c7c226b264640aaf9d5ebb (patch)
tree9fcb653071d381c13db0e9b3f09d7b26b9b71c23 /pkgs/applications/graphics/ipe
parentc77728de7b8b0d42c3f1f961cc55999e82eb52e2 (diff)
ipe: 7.2.9 -> 7.2.10
https://mailman.science.uu.nl/pipermail/ipe-announce/2019-February/000077.html Cleanup a bit while visiting :).
Diffstat (limited to 'pkgs/applications/graphics/ipe')
-rw-r--r--pkgs/applications/graphics/ipe/default.nix20
1 files changed, 6 insertions, 14 deletions
diff --git a/pkgs/applications/graphics/ipe/default.nix b/pkgs/applications/graphics/ipe/default.nix
index ee5c348eb6b..140227eb9ec 100644
--- a/pkgs/applications/graphics/ipe/default.nix
+++ b/pkgs/applications/graphics/ipe/default.nix
@@ -3,26 +3,16 @@
}:
stdenv.mkDerivation rec {
- name = "ipe-7.2.9";
+ name = "ipe-7.2.10";
src = fetchurl {
url = "https://dl.bintray.com/otfried/generic/ipe/7.2/${name}-src.tar.gz";
- sha256 = "1i0h0q32xvbb0d3y2ff76jxnaw05hjf2z5gzww886z8arxwar1xn";
+ sha256 = "0rm31kvyg30452bz12yi49bkhdmi4bjdx6zann5cdlbi0pvmx7xh";
};
- # changes taken from Gentoo portage
- preConfigure = ''
- cd src
- sed -i \
- -e 's/fpic/fPIC/' \
- -e 's/moc-qt4/moc/' \
- config.mak || die
- sed -i -e 's/install -s/install/' common.mak || die
- '';
-
- NIX_CFLAGS_COMPILE = [ "-std=c++11" ]; # build with Qt 5.7
+ sourceRoot = "${name}/src";
- IPEPREFIX="$$out";
+ IPEPREFIX="${placeholder "out"}";
URWFONTDIR="${texlive}/texmf-dist/fonts/type1/urw/";
LUA_PACKAGE = "lua";
@@ -38,6 +28,8 @@ stdenv.mkDerivation rec {
done
'';
+ enableParallelBuilding = true;
+
#TODO: make .desktop entry
meta = {