about summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs/modes/nxml/builder.sh
blob: 1be9ef0d1649dd5ce835c292e015a11f794a6f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

. $stdenv/setup || exit 1

mkdir -p $out/emacs/site-lisp || exit 1
cd $out/emacs/site-lisp || exit 1
tar xvfz $src || exit 1
mv nxml-mode-*/* . || exit 1
rmdir nxml-mode-*

exit 0