mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
emacs-packages: Remove quack from old emacs package infrastructure
This commit is contained in:
parent
99677ec06b
commit
5413061d52
|
@ -1,32 +0,0 @@
|
|||
{ fetchurl, stdenv, emacs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "quack-0.39";
|
||||
|
||||
src = fetchurl {
|
||||
# XXX: Upstream URL is not versioned, which might eventually break this.
|
||||
url = "http://www.neilvandyke.org/quack/quack.el";
|
||||
sha256 = "1q5bsllxkibiddwp32306flqm8s3caffnpbqz5ka260avllp4jj5";
|
||||
};
|
||||
|
||||
buildInputs = [ emacs ];
|
||||
|
||||
dontUnpack = true;
|
||||
dontConfigure = true;
|
||||
installPhase = "true";
|
||||
|
||||
buildPhase = ''
|
||||
emacsDir="$out/share/emacs/site-lisp"
|
||||
|
||||
mkdir -p "$emacsDir"
|
||||
cp -v "$src" "$emacsDir/quack.el"
|
||||
emacs --batch -f batch-byte-compile "$emacsDir/quack.el"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Enhanced Emacs support for editing and running Scheme code";
|
||||
homepage = http://www.neilvandyke.org/quack/;
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue