nixpkgs/pkgs/applications/editors/emacs-modes/metaweblog/default.nix

32 lines
827 B
Nix
Raw Normal View History

2014-06-05 13:42:39 +00:00
{ stdenv, fetchgit, emacs, xmlRpc }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2014-06-05 13:42:39 +00:00
name = "metaweblog-0.1";
src = fetchgit {
url = https://github.com/punchagan/metaweblog.git;
rev = "ceda65048afaa4c7596c7f50ced998c59ef41167";
sha256 = "a4c10bb1b4be574e560f87d5f07da4e24e5fffe9ecc83e6d4f9325f3a7eb1e2f";
};
buildInputs = [ emacs ];
propagatedUserEnvPkgs = [ xmlRpc ];
buildPhase = ''
emacs -L . -L ${xmlRpc}/share/emacs/site-lisp --batch -f batch-byte-compile *.el
'';
installPhase = ''
install -d $out/share/emacs/site-lisp
install *.el* $out/share/emacs/site-lisp
'';
meta = {
description = "An emacs library to access metaweblog based weblogs";
2014-06-05 13:42:39 +00:00
homepage = https://github.com/punchagan/metaweblog;
license = stdenv.lib.licenses.gpl3Plus;
2014-06-05 13:42:39 +00:00
platforms = stdenv.lib.platforms.all;
};
}