pkgs/applications/editors/emacs-modes/prolog: initial version of prolog-mode for Emacs
svn path=/nixpkgs/trunk/; revision=18675
This commit is contained in:
parent
746c502acc
commit
af0a961e3d
19
pkgs/applications/editors/emacs-modes/prolog/default.nix
Normal file
19
pkgs/applications/editors/emacs-modes/prolog/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation
|
||||
{
|
||||
name = "prolog-mode-1.22";
|
||||
src = fetchurl
|
||||
{
|
||||
url = "http://bruda.ca/emacs-prolog/prolog.el";
|
||||
sha256 = "f46915b2436642bb3302cb38cc457d3c121d0c3e95aecdf128fedc2ae5ea0c87";
|
||||
};
|
||||
|
||||
buildCommand = "install -v -D -m644 $src $out/share/emacs/site-lisp/prolog.el";
|
||||
|
||||
meta = {
|
||||
homepage = "http://turing.ubishops.ca/home/bruda/emacs-prolog/";
|
||||
description = "Prolog mode for Emacs";
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
@ -6590,6 +6590,10 @@ let
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
prologMode = import ../applications/editors/emacs-modes/prolog {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
quack = import ../applications/editors/emacs-modes/quack {
|
||||
inherit fetchurl stdenv emacs;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user