about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix b/nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix
new file mode 100644
index 000000000000..18dcef129cc2
--- /dev/null
+++ b/nixpkgs/pkgs/applications/editors/emacs-modes/cedet/default.nix
@@ -0,0 +1,51 @@
+{ lib, fetchurl, stdenv, emacs, python }:
+
+stdenv.mkDerivation rec {
+  name = "cedet-1.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/cedet/${name}.tar.gz";
+    sha256 = "0p2bwlpwwa019axvgj09xkxbr53j0pq23d46s4la9jfhl47nbh22";
+  };
+
+  buildInputs = [ emacs python ];
+
+  doCheck = true;
+  checkPhase = "make utest";
+
+  installPhase = ''
+    mkdir -p "$out/share/emacs/site-lisp"
+    cp -v */*.el */*/*.el */*.elc */*/*.elc "$out/share/emacs/site-lisp"
+    chmod a-x "$out/share/emacs/site-lisp/"*
+
+    mkdir -p "$out/share/info"
+    cp -v */*.info* */*/*.info* "$out/share/info"
+  '';
+
+  meta = {
+    description = "CEDET, a Collection of Emacs Development Environment Tools";
+
+    longDescription = ''
+      CEDET is a collection of tools written with the end goal of
+      creating an advanced development environment in Emacs.
+
+      Emacs already is a great environment for writing software, but
+      there are additional areas that need improvement.  Many new
+      ideas for integrated environments have been developed in newer
+      products, such as JBuilder, Eclipse, or KDevelop.  CEDET is a
+      project which brings together several different tools needed to
+      implement advanced features.
+
+      CEDET includes EIEIO (Enhanced Implementation of Emacs
+      Interpreted Objects), Semantic, SRecode, Speedbar, EDE (Emacs
+      Development Environment), and COGRE (COnnected GRaph Editor).
+    '';
+
+    license = lib.licenses.gpl2Plus;
+
+    homepage = "http://cedet.sourceforge.net/";
+
+    # Fails with `semantic-idle.el:42:1:Error: Invalid function: class-p`
+    broken = true;
+  };
+}