nixpkgs/pkgs/applications/editors/emacs-modes/melpa-packages.nix

67 lines
1.8 KiB
Nix
Raw Normal View History

/*
# Updating
To update the list of packages from MELPA,
1. Clone https://github.com/ttuegel/emacs2nix
2. Clone https://github.com/milkypostman/melpa
3. Run `./melpa-packages.sh PATH_TO_MELPA_CLONE` from emacs2nix
4. Copy the new melpa-packages.json file into Nixpkgs
5. `git commit -m "melpa-packages $(date -Idate)"`
*/
{ lib }:
2015-12-15 01:48:13 +00:00
let
inherit (lib) makeScope mapAttrs;
2015-12-15 01:48:13 +00:00
json = builtins.readFile ./melpa-stable-packages.json;
manifest = builtins.fromJSON json;
mkPackage = self: name: recipe:
let drv =
2015-12-19 15:49:23 +00:00
{ melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab
, fetchgit, fetchhg, fetchsvn, fetchurl }:
2015-12-15 17:57:51 +00:00
let
unknownFetcher =
abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
fetch =
{
2015-12-19 15:49:23 +00:00
inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
fetchsvn fetchurl;
2015-12-15 17:57:51 +00:00
}."${recipe.fetch.tag}"
or unknownFetcher;
args = builtins.removeAttrs recipe.fetch [ "tag" ];
src = fetch args;
2015-12-15 01:48:13 +00:00
in melpaBuild {
pname = name;
inherit (recipe) version;
inherit src;
deps =
2015-12-15 17:57:51 +00:00
let lookupDep = d: self."${d}" or null;
2015-12-15 01:48:13 +00:00
in map lookupDep recipe.deps;
meta = {
homepage = "http://melpa.org/#/${name}";
license = stdenv.lib.licenses.free;
};
};
in self.callPackage drv {};
2015-12-15 17:57:51 +00:00
in
2015-12-15 01:48:13 +00:00
2015-12-15 17:57:51 +00:00
self:
2015-12-15 01:48:13 +00:00
2015-12-15 17:57:51 +00:00
let
super = mapAttrs (mkPackage self) manifest;
markBroken = pkg: pkg.override {
melpaBuild = args: self.melpaBuild (args // {
meta = (args.meta or {}) // { broken = true; };
});
};
in
super // { melpaPackages = super; }