2015-12-17 16:12:49 +03:00
|
|
|
/*
|
|
|
|
|
|
|
|
# Updating
|
|
|
|
|
|
|
|
To update the list of packages from ELPA,
|
|
|
|
|
|
|
|
1. Clone https://github.com/ttuegel/emacs2nix
|
|
|
|
2. Run `./elpa-packages.sh` from emacs2nix
|
|
|
|
3. Copy the new elpa-packages.json file into Nixpkgs
|
|
|
|
4. `git commit -m "elpa-packages $(date -Idate)"`
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-12-17 05:39:45 +03:00
|
|
|
{ fetchurl, lib, stdenv, texinfo }:
|
2015-12-06 18:27:19 +03:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2015-12-17 05:39:45 +03:00
|
|
|
inherit (lib) makeScope mapAttrs;
|
2015-12-06 18:27:19 +03:00
|
|
|
|
|
|
|
json = builtins.readFile ./elpa-packages.json;
|
|
|
|
manifest = builtins.fromJSON json;
|
|
|
|
|
|
|
|
mkPackage = self: name: recipe:
|
|
|
|
let drv =
|
|
|
|
{ elpaBuild, stdenv, fetchurl }:
|
2015-12-15 20:57:51 +03:00
|
|
|
let
|
|
|
|
unknownFetcher =
|
|
|
|
abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
|
|
|
|
fetch =
|
|
|
|
{ inherit fetchurl; }."${recipe.fetch.tag}"
|
|
|
|
or unknownFetcher;
|
|
|
|
args = builtins.removeAttrs recipe.fetch [ "tag" ];
|
|
|
|
src = fetch args;
|
2015-12-06 18:27:19 +03:00
|
|
|
in elpaBuild {
|
|
|
|
pname = name;
|
|
|
|
inherit (recipe) version;
|
|
|
|
inherit src;
|
2015-12-22 15:55:10 +03:00
|
|
|
packageRequires =
|
2015-12-15 20:57:51 +03:00
|
|
|
let lookupDep = d: self."${d}" or null;
|
2015-12-06 18:27:19 +03:00
|
|
|
in map lookupDep recipe.deps;
|
|
|
|
meta = {
|
|
|
|
homepage = "http://elpa.gnu.org/packages/${name}.html";
|
|
|
|
license = stdenv.lib.licenses.free;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in self.callPackage drv {};
|
|
|
|
|
2015-12-15 20:57:51 +03:00
|
|
|
in
|
2015-12-06 18:27:19 +03:00
|
|
|
|
2015-12-15 20:57:51 +03:00
|
|
|
self:
|
2015-12-06 18:27:19 +03:00
|
|
|
|
2015-12-15 20:57:51 +03:00
|
|
|
let
|
2016-01-10 01:03:03 +03:00
|
|
|
super = removeAttrs (mapAttrs (mkPackage self) manifest) [ "dash" ];
|
2015-12-15 20:57:51 +03:00
|
|
|
|
|
|
|
elpaBuild = import ../../../build-support/emacs/melpa.nix {
|
2015-12-17 05:39:45 +03:00
|
|
|
inherit fetchurl lib stdenv texinfo;
|
2015-12-15 20:57:51 +03:00
|
|
|
inherit (self) emacs;
|
|
|
|
};
|
|
|
|
|
|
|
|
markBroken = pkg: pkg.override {
|
|
|
|
elpaBuild = args: self.elpaBuild (args // {
|
|
|
|
meta = (args.meta or {}) // { broken = true; };
|
|
|
|
});
|
|
|
|
};
|
2015-12-16 17:13:46 +03:00
|
|
|
|
|
|
|
elpaPackages = super // {
|
2016-01-11 18:47:22 +03:00
|
|
|
# These packages require emacs-25
|
2015-12-16 17:13:46 +03:00
|
|
|
el-search = markBroken super.el-search;
|
|
|
|
iterators = markBroken super.iterators;
|
2015-12-16 17:24:35 +03:00
|
|
|
midi-kbd = markBroken super.midi-kbd;
|
2015-12-16 17:13:46 +03:00
|
|
|
stream = markBroken super.stream;
|
|
|
|
};
|
|
|
|
in elpaPackages // { inherit elpaBuild elpaPackages; }
|