summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/emacs-modes
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-11-02 02:08:16 +0100
committerfreezeboy <freezeboy@users.noreply.github.com>2020-11-02 02:09:27 +0100
commit6e386e1c4694cf750bfc2efd4326f3173499b025 (patch)
tree19ed320007aef2641d3e3c19ecbc0cc4015fb08c /pkgs/applications/editors/emacs-modes
parentee3acf3aa458463e2d8faf8367f49f711fd00ad4 (diff)
emacs26Packages.prolog-mode: unbreak
Unfortunately this package doesn't contain the version number in the URL so it might break easily again, but it is just a matter of updating the sha256
Diffstat (limited to 'pkgs/applications/editors/emacs-modes')
-rw-r--r--pkgs/applications/editors/emacs-modes/prolog/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/editors/emacs-modes/prolog/default.nix b/pkgs/applications/editors/emacs-modes/prolog/default.nix
index 7f5a097daa93..66ab98302375 100644
--- a/pkgs/applications/editors/emacs-modes/prolog/default.nix
+++ b/pkgs/applications/editors/emacs-modes/prolog/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
- name = "prolog-mode-1.25";
+ pname = "prolog-mode";
+ version = "1.28";
src = fetchurl {
url = "http://bruda.ca/_media/emacs/prolog.el";
- sha256 = "0hfd2dr3xc5qxgvc08nkb2l5a05hfldahdc6ymi9vd8798cc46yh";
+ sha256 = "oCMzks4xuor8Il8Ll8PXh1zIvMl5qN0RCFJ9yKiHOHU=";
};
buildCommand = ''
@@ -17,8 +18,5 @@ stdenv.mkDerivation {
homepage = "http://bruda.ca/emacs/prolog_mode_for_emacs/";
description = "Prolog mode for Emacs";
license = stdenv.lib.licenses.gpl2Plus;
-
- # Has wrong sha256
- broken = true;
};
}