emacs.pkgs.jam-mode: init at 0.3

This commit is contained in:
Alyssa Ross 2021-02-09 02:19:07 +00:00
parent 3ed5570514
commit 01348aae1e
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ trivialBuild, lib, fetchurl }:
trivialBuild rec {
pname = "jam-mode";
version = "0.3";
src = fetchurl {
url = "https://dev.gentoo.org/~ulm/distfiles/jam-mode-${version}.el.xz";
sha256 = "1jchgiy2rgvnb3swr6ar72yas6pj4inpgpcq78q01q6snflmi2fh";
};
unpackPhase = ''
xz -cd $src > jam-mode.el
'';
meta = with lib; {
description = "An Emacs major mode for editing Jam files";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ qyliss ];
platforms = platforms.all;
};
}

View file

@ -111,6 +111,8 @@
helm-words = callPackage ./helm-words { };
jam-mode = callPackage ./jam-mode { };
org-mac-link =
callPackage ./org-mac-link { };