2017-11-13 00:43:35 +00:00
|
|
|
{ stdenv, fetchurl, emacs }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "zeitgeist-20120221";
|
|
|
|
|
2019-06-19 16:45:34 +01:00
|
|
|
dontUnpack = true;
|
2017-11-13 00:43:35 +00:00
|
|
|
|
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://zeitgeist-project.com/";
|
2017-11-13 00:43:35 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|