tvl-depot/third_party/emacs/carp-mode.nix
Vincent Ambo 65e533431a refactor: emacsPackagesNg -> emacsPackages
The former is now just an alias for the latter anyways.
2020-03-08 23:20:03 +00:00

23 lines
485 B
Nix

{ pkgs, ... }:
with pkgs;
with emacsPackages;
melpaBuild rec {
pname = "carp-mode";
version = "3.0";
packageRequires = [ clojure-mode ];
recipe = builtins.toFile "recipe" ''
(carp-mode :fetcher github
:repo "carp-lang/carp"
:files ("emacs/*.el"))
'';
src = fetchFromGitHub {
owner = "carp-lang";
repo = "carp";
rev = "6954642cadee730885717201c3180c7acfb1bfa9";
sha256 = "1pz4x2qkwjbz789bwc6nkacrjpzlxawxhl2nv0xdp731y7q7xyk9";
};
}