summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-modes/zeitgeist/default.nix
blob: 9403a51df53244c51b40fdfe25ff98f4f364b80c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, emacs }:

stdenv.mkDerivation {
  name = "zeitgeist-20120221";

  dontUnpack = true;

  src = fetchurl {
    url = "https://raw.githubusercontent.com/alexmurray/dotfiles/master/.emacs.d/vendor/zeitgeist.el";
    sha256 = "0fssx3lp8ar3b1ichbagir7z17habv367l7zz719ipycr24rf1nw";
  };

  buildInputs = [ emacs ];

  installPhase = ''
    mkdir -p $out/share/emacs/site-lisp
    cp $src $out/share/emacs/site-lisp/zeitgeist.el
  '';

  meta = {
    description = "Integreate Emacs with Zeitgeist";
    homepage = http://zeitgeist-project.com/;
    platforms = stdenv.lib.platforms.all;
  };
}