emacs-cedet: update to version 1.1 to fix the build

This commit is contained in:
Peter Simons 2013-04-06 01:22:18 +02:00
parent 130c081966
commit f8faea23f8

View file

@ -1,14 +1,14 @@
{ fetchurl, stdenv, emacs }:
{ fetchurl, stdenv, emacs, python }:
stdenv.mkDerivation rec {
name = "cedet-1.0pre6";
name = "cedet-1.1";
src = fetchurl {
url = "mirror://sourceforge/cedet/${name}.tar.gz";
sha256 = "0pvd54rjlba12cxgqibm8v4i8x43r5c239z891lgcbafjvkzpdxb";
sha256 = "0p2bwlpwwa019axvgj09xkxbr53j0pq23d46s4la9jfhl47nbh22";
};
buildInputs = [ emacs ];
buildInputs = [ emacs python ];
doCheck = true;
checkPhase = "make utest";