Added Dia.

svn path=/nixpkgs/trunk/; revision=8903
This commit is contained in:
Michael Raskin 2007-06-20 12:20:39 +00:00
parent e1a6bab3ff
commit 02d12c9ff6
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, gtk, pkgconfig, glib, perl, perlXMLParser, libxml2, gettext, python, libxml2Python, docbook5, docbook_xsl, libxslt }:
stdenv.mkDerivation {
name = "dia";
src = fetchurl {
url = http://ftp.gnome.org.nyud.net:8080/pub/gnome/sources/dia/0.96/dia-0.96.1.tar.bz2;
md5 = "7b81b22baa2df55efe4845865dddc7b6";
};
buildInputs = [gtk glib perl pkgconfig perlXMLParser libxml2 gettext python libxml2Python docbook5 libxslt docbook_xsl];
}

View file

@ -2726,6 +2726,13 @@ rec {
inherit fetchurl stdenv ghc zlib ncurses curl;
};
dia = import ../applications/graphics/dia {
inherit stdenv fetchurl pkgconfig perl perlXMLParser
libxml2 gettext python libxml2Python docbook5 docbook_xsl
libxslt;
inherit (gtkLibs) gtk glib;
};
eclipse = plugins :
import ../applications/editors/eclipse {
inherit fetchurl stdenv makeWrapper jdk;