2009-12-25 17:13:58 +01:00
|
|
|
{stdenv, fetchurl, gtk, pkgconfig, glib, perl, perlXMLParser, libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl, libxslt, intltool }:
|
2007-06-20 14:20:39 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-12-25 17:13:58 +01:00
|
|
|
name = "dia-0.97";
|
2007-06-20 14:20:39 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-01-15 11:51:44 +01:00
|
|
|
url = mirror://gnome/sources/dia/0.97/dia-0.97.tar.bz2;
|
2009-12-25 17:13:58 +01:00
|
|
|
sha256 = "0nngdjklap3x1b7cxnwawh29axbwk8siyq7w4iinsns3slmki0wh";
|
2007-06-20 14:20:39 +02:00
|
|
|
};
|
|
|
|
|
2009-12-25 17:13:58 +01:00
|
|
|
buildInputs = [gtk glib perl pkgconfig perlXMLParser libxml2 gettext python libxml2Python docbook5 libxslt docbook_xsl intltool];
|
2007-06-26 13:49:45 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Gnome Diagram drawing software.";
|
2010-01-15 11:51:44 +01:00
|
|
|
homepage = http://live.gnome.org/Dia;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = with stdenv.lib.platforms;
|
|
|
|
linux;
|
2007-06-26 13:49:45 +02:00
|
|
|
};
|
2007-06-20 14:20:39 +02:00
|
|
|
}
|