emacs-packages: Remove idris from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:39 +01:00
parent 6b2f177737
commit 26af6f335b
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -1,31 +0,0 @@
{ stdenv, fetchurl, emacs }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "idris-mode";
version = "0.9.18";
src = fetchurl {
url = "https://github.com/idris-hackers/${pname}/archive/${version}.tar.gz";
sha256 = "06rw5lrxqqnw0kni3x9jm73x352d1vb683d41v8x3yzqfa2sxmwg";
};
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;
platforms = stdenv.lib.platforms.all;
};
}