2015-12-07 12:50:02 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, freetype, cairo, lua5, texLive, ghostscriptX
|
|
|
|
, libjpeg, qtbase
|
2013-01-03 16:13:55 +01:00
|
|
|
, makeWrapper }:
|
|
|
|
let ghostscript = ghostscriptX; in
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-07 12:50:02 +01:00
|
|
|
name = "ipe-7.1.10";
|
2013-01-03 16:13:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-12-07 12:50:02 +01:00
|
|
|
url = "https://dl.bintray.com/otfried/generic/ipe/7.1/${name}-src.tar.gz";
|
|
|
|
sha256 = "0kwk8l2jasb4fdixaca08g661d0sdmx2jkk3ch7pxh0f4xkdxkkz";
|
2013-01-03 16:13:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# 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
|
|
|
|
'';
|
|
|
|
|
|
|
|
IPEPREFIX="$$out";
|
|
|
|
URWFONTDIR="${texLive}/texmf-dist/fonts/type1/urw/";
|
2015-08-15 05:30:21 +02:00
|
|
|
LUA_PACKAGE = "lua";
|
2013-01-03 16:13:55 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2015-12-07 12:50:02 +01:00
|
|
|
libjpeg pkgconfig zlib qtbase freetype cairo lua5 texLive ghostscript makeWrapper
|
2013-01-03 16:13:55 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for prog in $out/bin/*; do
|
|
|
|
wrapProgram "$prog" --prefix PATH : "${texLive}/bin"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
#TODO: make .desktop entry
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An editor for drawing figures";
|
2015-08-15 05:28:23 +02:00
|
|
|
homepage = http://ipe.otfried.org;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-01-03 16:13:55 +01:00
|
|
|
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.
|
|
|
|
'';
|
2015-08-15 05:28:42 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
2015-08-15 05:28:51 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-01-03 16:13:55 +01:00
|
|
|
};
|
|
|
|
}
|