b936188ce8
svn path=/nixpkgs/trunk/; revision=11388
8 lines
200 B
Bash
8 lines
200 B
Bash
source "$stdenv/setup" || exit 1
|
|
|
|
emacsDir="$out/share/emacs/site-lisp"
|
|
|
|
ensureDir "$emacsDir" && \
|
|
cp "$src" "$emacsDir/quack.el" && \
|
|
emacs --batch -f batch-byte-compile "$emacsDir/quack.el"
|