mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Upgraded nxml mode and added cua mode
svn path=/nixpkgs/trunk/; revision=1544
This commit is contained in:
parent
8648397304
commit
77d3911dbd
4
pkgs/applications/editors/emacs/modes/cua/builder.sh
Normal file
4
pkgs/applications/editors/emacs/modes/cua/builder.sh
Normal file
@ -0,0 +1,4 @@
|
||||
. $stdenv/setup
|
||||
|
||||
mkdir -p $out/emacs/site-lisp
|
||||
cp $src $out/emacs/site-lisp/cua.el
|
8
pkgs/applications/editors/emacs/modes/cua/default.nix
Normal file
8
pkgs/applications/editors/emacs/modes/cua/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user