summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/modes/nxml/default.nix
blob: b5a780b307d651607f8f4ec31896857c6ba7da24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "nxml-mode-20031031";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.thaiopensource.com/download/nxml-mode-20031031.tar.gz;
    md5 = "4cbc32047183e6cc1b7a2757d1078bd2";
  };
  stdenv = stdenv;
}