mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
25 lines
505 B
Nix
25 lines
505 B
Nix
{stdenv, fetchurl, emacs}:
|
|
|
|
let
|
|
version = "2.12.1";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "emacs-dash-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/magnars/dash.el/archive/${version}.tar.gz";
|
|
sha256 = "082jl7mp4x063bpj5ad2pc5125k0d6p7rb89gcj7ny3lma9h2ij1";
|
|
};
|
|
|
|
buildInputs = [ emacs ];
|
|
|
|
buildPhase = ''
|
|
emacs -L . --batch -f batch-byte-compile *.el
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -d $out/share/emacs/site-lisp
|
|
install *.el *.elc $out/share/emacs/site-lisp
|
|
'';
|
|
}
|