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
|
|
|
|
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-15 06:52:31 +03:00
|
|
|
|
|
|
|
imported = import ./elpa-generated.nix {
|
|
|
|
inherit (self) callPackage;
|
|
|
|
};
|
|
|
|
|
|
|
|
super = removeAttrs imported [ "dash" ];
|
2015-12-15 20:57:51 +03:00
|
|
|
|
2016-01-17 02:20:06 +03:00
|
|
|
elpaBuild = import ../../../build-support/emacs/elpa.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
|
|
|
|
2016-01-15 06:52:31 +03:00
|
|
|
overrides = {
|
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;
|
|
|
|
};
|
2016-01-15 06:52:31 +03:00
|
|
|
|
|
|
|
elpaPackages = super // overrides;
|
|
|
|
|
2015-12-16 17:13:46 +03:00
|
|
|
in elpaPackages // { inherit elpaBuild elpaPackages; }
|