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

76 lines
2.1 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 02:48:13 +01:00
let
inherit (lib) makeScope mapAttrs;
2015-12-15 02:48:13 +01:00
json = builtins.readFile ./melpa-packages.json;
2015-12-15 02:48:13 +01:00
manifest = builtins.fromJSON json;
mkPackage = self: name: recipe:
let drv =
2015-12-19 16:49:23 +01:00
{ melpaBuild, stdenv, fetchbzr, fetchcvs, fetchFromGitHub, fetchFromGitLab
, fetchgit, fetchhg, fetchsvn, fetchurl }:
2015-12-15 18:57:51 +01:00
let
unknownFetcher =
abort "emacs-${name}: unknown fetcher '${recipe.fetch.tag}'";
fetch =
{
2015-12-19 16:49:23 +01:00
inherit fetchbzr fetchcvs fetchFromGitHub fetchFromGitLab fetchgit fetchhg
fetchsvn fetchurl;
2015-12-15 18:57:51 +01:00
}."${recipe.fetch.tag}"
or unknownFetcher;
args = builtins.removeAttrs recipe.fetch [ "tag" ];
src = fetch args;
2015-12-29 20:24:28 +01:00
recipeFile = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/${recipe.recipe.commit}/recipes/${name}";
inherit (recipe.recipe) sha256;
};
2015-12-15 02:48:13 +01:00
in melpaBuild {
pname = name;
inherit (recipe) version;
2015-12-29 20:24:28 +01:00
inherit recipeFile src;
packageRequires =
2015-12-15 18:57:51 +01:00
let lookupDep = d: self."${d}" or null;
2015-12-15 02:48:13 +01:00
in map lookupDep recipe.deps;
meta = {
homepage = "http://melpa.org/#/${name}";
license = stdenv.lib.licenses.free;
};
};
in self.callPackage drv {};
2015-12-15 18:57:51 +01:00
in
2015-12-15 02:48:13 +01:00
2015-12-15 18:57:51 +01:00
self:
2015-12-15 02:48:13 +01:00
2015-12-15 18:57:51 +01:00
let
super = mapAttrs (mkPackage self) manifest;
markBroken = pkg: pkg.override {
melpaBuild = args: self.melpaBuild (args // {
meta = (args.meta or {}) // { broken = true; };
});
};
melpaPackages = super // {
# broken upstream
ack-menu = markBroken super.ack-menu;
};
2015-12-15 18:57:51 +01:00
in
melpaPackages // { inherit melpaPackages; }