1
0
Fork 1
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:
adisbladis 2019-08-18 17:02:43 +01:00
parent 99677ec06b
commit 5413061d52
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -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 = [ ];
};
}