2016-09-11 22:24:51 +01:00
|
|
|
{stdenv, fetchurl, gtk2, pkgconfig, perl, perlXMLParser, libxml2, gettext
|
2011-09-20 07:31:37 +01:00
|
|
|
, python, libxml2Python, docbook5, docbook_xsl, libxslt, intltool, libart_lgpl
|
2012-01-18 20:53:01 +00:00
|
|
|
, withGNOME ? false, libgnomeui }:
|
2007-06-20 13:20:39 +01:00
|
|
|
|
2011-09-20 07:31:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-05 06:22:12 +01:00
|
|
|
name = "dia-${minVer}.3";
|
|
|
|
minVer = "0.97";
|
2011-09-20 07:31:37 +01:00
|
|
|
|
2015-04-05 06:22:12 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/dia/${minVer}/${name}.tar.xz";
|
2014-10-07 06:26:48 +01:00
|
|
|
sha256 = "0d3x6w0l6fwd0l8xx06y1h56xf8ss31yzia3a6xr9y28xx44x492";
|
2007-06-20 13:20:39 +01:00
|
|
|
};
|
|
|
|
|
2011-09-20 07:31:37 +01:00
|
|
|
buildInputs =
|
2016-09-11 22:24:51 +01:00
|
|
|
[ gtk2 perlXMLParser libxml2 gettext python libxml2Python docbook5
|
2011-09-20 07:31:37 +01:00
|
|
|
libxslt docbook_xsl libart_lgpl
|
|
|
|
] ++ stdenv.lib.optional withGNOME libgnomeui;
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool perl ];
|
2011-09-20 07:31:37 +01:00
|
|
|
|
|
|
|
configureFlags = stdenv.lib.optionalString withGNOME "--enable-gnome";
|
2007-06-26 12:49:45 +01:00
|
|
|
|
2014-10-07 06:26:48 +01:00
|
|
|
patches = [ ];
|
2012-07-15 16:01:27 +01:00
|
|
|
|
2012-11-27 23:21:34 +00:00
|
|
|
# This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command
|
|
|
|
# It have no reasons to exist in a redistribuable package
|
2014-06-12 12:02:39 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm $out/share/icons/hicolor/icon-theme.cache
|
|
|
|
'';
|
2012-11-27 23:21:34 +00:00
|
|
|
|
2007-06-26 12:49:45 +01:00
|
|
|
meta = {
|
2011-09-20 07:31:37 +01:00
|
|
|
description = "Gnome Diagram drawing software";
|
2010-01-15 10:51:44 +00:00
|
|
|
homepage = http://live.gnome.org/Dia;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2017-08-31 01:01:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2007-06-26 12:49:45 +01:00
|
|
|
};
|
2007-06-20 13:20:39 +01:00
|
|
|
}
|