summary refs log tree commit diff
path: root/pkgs/applications/editors/monodevelop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/monodevelop/default.nix')
-rw-r--r--pkgs/applications/editors/monodevelop/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/editors/monodevelop/default.nix b/pkgs/applications/editors/monodevelop/default.nix
new file mode 100644
index 000000000000..6cd2c4733442
--- /dev/null
+++ b/pkgs/applications/editors/monodevelop/default.nix
@@ -0,0 +1,15 @@
+{stdenv, fetchurl, mono, gtksharp, perl, perlXMLParser, pkgconfig, glib, gnomevfs, libbonobo}:
+
+stdenv.mkDerivation {
+  name = "MonoDevelop-0.5.1";
+  builder = ./builder.sh;
+
+  src = fetchurl {
+    url = http://www.go-mono.com/archive/1.0.5/monodevelop-0.5.1.tar.gz;
+    md5 = "d89458a2d909da09b2cc1f37e16d8990";
+  };
+
+  buildInputs = [mono gtksharp perl pkgconfig gnomevfs glib libbonobo];
+  inherit perlXMLParser;
+}
+  
\ No newline at end of file