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

32 lines
741 B
Nix
Raw Normal View History

2014-06-12 13:23:48 -04:00
{ stdenv, fetchurl, emacs }:
2014-01-06 06:19:13 -05:00
stdenv.mkDerivation rec {
2014-06-12 13:23:48 -04:00
name = "${pname}-${version}";
pname = "idris-mode";
version = "0.9.18";
2014-01-06 06:19:13 -05:00
2014-06-12 13:23:48 -04:00
src = fetchurl {
url = "https://github.com/idris-hackers/${pname}/archive/${version}.tar.gz";
sha256 = "06rw5lrxqqnw0kni3x9jm73x352d1vb683d41v8x3yzqfa2sxmwg";
2014-01-06 06:19:13 -05:00
};
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
'';
meta = {
description = "Emacs major mode for Idris";
homepage = https://github.com/idris-hackers/idris-mode;
license = stdenv.lib.licenses.gpl3;
2014-01-06 06:19:13 -05:00
platforms = stdenv.lib.platforms.all;
};
}