summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/monodevelop
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-03-10 12:49:37 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-03-10 12:49:37 +0000
commit8a282aa46c1671252adc0c19ac40d453f743ff7d (patch)
treed90e10b042b22de4661a92d0bf436f8d3fc6a180 /pkgs/applications/editors/monodevelop
parent93e16516a7211cf8123bfc968d9db71163381896 (diff)
* Set PERL5LIB automatically in the Perl setup hook.
* Remove explicit setting of PERL5LIB. * Use the generic Perl builder for the BerkeleyDB and XML::Parser modules. * Prefix all names of Perl modules with `perl-' (in the generic Perl builder). svn path=/nixpkgs/trunk/; revision=2365
Diffstat (limited to 'pkgs/applications/editors/monodevelop')
-rw-r--r--pkgs/applications/editors/monodevelop/builder.sh2
-rw-r--r--pkgs/applications/editors/monodevelop/default.nix5
2 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/applications/editors/monodevelop/builder.sh b/pkgs/applications/editors/monodevelop/builder.sh
index eb42bc54f4c3..930cc475aa81 100644
--- a/pkgs/applications/editors/monodevelop/builder.sh
+++ b/pkgs/applications/editors/monodevelop/builder.sh
@@ -1,8 +1,6 @@
. $stdenv/setup
. $makeWrapper
-export PERL5LIB=$perlXMLParser/lib/site_perl:$PERL5LIB
-
export MONO_GAC_PREFIX=$monodoc:$gtksharp
postInstall=postInstall
diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix
index 63a996e1972d..c7400b5cf43f 100644
--- a/pkgs/applications/editors/monodevelop/default.nix
+++ b/pkgs/applications/editors/monodevelop/default.nix
@@ -19,11 +19,10 @@ stdenv.mkDerivation {
patches = [./prefix.patch];
buildInputs = [
- file mono gtksharp gtksourceviewsharp perl pkgconfig
+ file mono gtksharp gtksourceviewsharp perl perlXMLParser pkgconfig
glib gtk gconf gnomevfs libbonobo libglade libgnome
gtkmozembedsharp monodoc
];
- inherit perlXMLParser mozilla monodoc
- gtksharp gtkmozembedsharp gtksourceviewsharp;
+ inherit mozilla monodoc gtksharp gtkmozembedsharp gtksourceviewsharp;
}