2011-09-20 07:31:37 +01:00
|
|
|
{stdenv, fetchurl_gnome, gtk, pkgconfig, perl, perlXMLParser, libxml2, gettext
|
|
|
|
, 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 {
|
2012-01-02 13:42:11 +00:00
|
|
|
name = src.pkgname;
|
2011-09-20 07:31:37 +01:00
|
|
|
|
|
|
|
src = fetchurl_gnome {
|
|
|
|
project = "dia";
|
2012-01-02 14:13:03 +00:00
|
|
|
major = "0"; minor = "97"; patchlevel = "2"; extension = "xz";
|
|
|
|
sha256 = "1qgawm7rrf4wd1yc0fp39ywv8gbz4ry1s16k00dzg5w6p67lfqd7";
|
2007-06-20 13:20:39 +01:00
|
|
|
};
|
|
|
|
|
2011-09-20 07:31:37 +01:00
|
|
|
buildInputs =
|
|
|
|
[ gtk perlXMLParser libxml2 gettext python libxml2Python docbook5
|
|
|
|
libxslt docbook_xsl libart_lgpl
|
|
|
|
] ++ stdenv.lib.optional withGNOME libgnomeui;
|
|
|
|
|
2012-01-18 20:53:01 +00:00
|
|
|
buildNativeInputs = [ 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
|
|
|
|
|
|
|
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;
|
2011-09-20 07:31:37 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin urkud];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2007-06-26 12:49:45 +01:00
|
|
|
};
|
2007-06-20 13:20:39 +01:00
|
|
|
}
|