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

22 lines
529 B
Nix
Raw Normal View History

{ fetchurl, stdenv, emacs }:
stdenv.mkDerivation {
name = "quack-0.30";
src = fetchurl {
# XXX: Upstream URL is not versioned, which might eventually break this.
url = "http://www.neilvandyke.org/quack/quack.el";
sha256 = "1xmpbdb064s3l3cv4agf03ir1g7xfzyvlqayr3yy5f8z3i6pf7mi";
};
buildInputs = [ emacs ];
builder = ./builder.sh;
meta = {
description = "Enhanced Emacs support for editing and running Scheme code";
homepage = http://www.neilvandyke.org/quack/;
license = "GPLv2+";
};
}