about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/modes/cua/default.nix
blob: f68a5cea2ecb46f0543243f15047b16262a21973 (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "cua-mode-2.10";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.cua.dk/cua.el;
    md5 = "5bf5e43f5f38c8383868c7c6c5baca09";
  };
}