ledger3: Install emacs-lisp files manually.
Build process is currently broken for emacs lisp files. Signed-off-by: Moritz Ulrich <moritz@tarn-vedra.de>
This commit is contained in:
parent
a7ba6d655d
commit
b77be3f3fe
|
@ -17,6 +17,13 @@ stdenv.mkDerivation {
|
|||
doCheck = true;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# Skip byte-compiling of emacs-lisp files because this is currently
|
||||
# broken in ledger...
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/emacs/site-lisp/
|
||||
cp -v $src/lisp/*.el $out/share/emacs/site-lisp/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://ledger-cli.org/";
|
||||
description = "A double-entry accounting system with a command-line reporting interface";
|
||||
|
|
Loading…
Reference in New Issue