Upgraded nxml mode and added cua mode

svn path=/nixpkgs/trunk/; revision=1544
This commit is contained in:
Martin Bravenboer 2004-10-06 12:06:23 +00:00
parent 8648397304
commit 77d3911dbd
4 changed files with 19 additions and 3 deletions

View File

@ -0,0 +1,4 @@
. $stdenv/setup
mkdir -p $out/emacs/site-lisp
cp $src $out/emacs/site-lisp/cua.el

View File

@ -0,0 +1,8 @@
{stdenv, fetchurl}: stdenv.mkDerivation {
name = "cua-mode-2.10";
builder = ./builder.sh;
src = fetchurl {
url = http://www.cua.dk/cua.el;
md5 = "5bf5e43f5f38c8383868c7c6c5baca09";
};
}

View File

@ -1,8 +1,8 @@
{stdenv, fetchurl}: stdenv.mkDerivation {
name = "nxml-mode-20040726";
name = "nxml-mode-20041004";
builder = ./builder.sh;
src = fetchurl {
url = http://www.thaiopensource.com/download/nxml-mode-20040726.tar.gz;
md5 = "d5c1d6031abfd23cd0da0b79422d9810";
url = http://www.thaiopensource.com/download/nxml-mode-20041004.tar.gz;
md5 = "ac137024cf337d6f11d8ab278d39b4db";
};
}

View File

@ -868,6 +868,10 @@ rec {
inherit fetchurl stdenv;
};
cua = (import ../applications/editors/emacs/modes/cua) {
inherit fetchurl stdenv;
};
vim = (import ../applications/editors/vim) {
inherit fetchurl stdenv ncurses;
};