summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/default.nix
blob: 07253ec9d5bfa2f9e39958984396e4abf9cde294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, xlibs}:

stdenv.mkDerivation {
  name = "emacs-21.3";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/emacs-21.3.tar.gz;
    md5 = "a0bab457cbf5b4f8eb99d1d0a3ada420";
  };
  patches = [./patchfile];
  inherit (xlibs) libXaw libX11;

  buildInputs = [xlibs.libXaw xlibs.libX11];
}