mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
656c68d654
- addPackageRequires - addPackageRequiresIfOlder - addPackageRequiresWhen - fixRequireHelmCore - ignoreCompilationError - ignoreCompilationErrorIfOlder - ignoreCompilationErrorWhen - mkHomeIfOlder - mkHomeWhen
59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
/*
|
|
|
|
# Updating
|
|
|
|
To update the list of packages from ELPA,
|
|
|
|
1. Run `./update-elpa-devel`.
|
|
2. Check for evaluation errors:
|
|
# "../../../../../" points to the default.nix from root of Nixpkgs tree
|
|
env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate ../../../../../ -A emacs.pkgs.elpaDevelPackages
|
|
3. Run `git commit -m "elpa-devel-packages $(date -Idate)" -- elpa-devel-generated.nix`
|
|
|
|
## Update from overlay
|
|
|
|
Alternatively, run the following command:
|
|
|
|
./update-from-overlay
|
|
|
|
It will update both melpa and elpa packages using
|
|
https://github.com/nix-community/emacs-overlay. It's almost instantenous and
|
|
formats commits for you.
|
|
|
|
*/
|
|
|
|
{ lib, pkgs, buildPackages }:
|
|
|
|
self: let
|
|
|
|
inherit (import ./lib-override-helper.nix pkgs lib)
|
|
markBroken
|
|
;
|
|
|
|
# Use custom elpa url fetcher with fallback/uncompress
|
|
fetchurl = buildPackages.callPackage ./fetchelpa.nix { };
|
|
|
|
generateElpa = lib.makeOverridable ({
|
|
generated ? ./elpa-devel-generated.nix
|
|
}: let
|
|
|
|
imported = import generated {
|
|
callPackage = pkgs: args: self.callPackage pkgs (args // {
|
|
inherit fetchurl;
|
|
});
|
|
};
|
|
|
|
super = imported;
|
|
|
|
commonOverrides = import ./elpa-common-overrides.nix pkgs lib buildPackages;
|
|
|
|
overrides = self: super: {
|
|
};
|
|
|
|
elpaDevelPackages =
|
|
let super' = super // (commonOverrides self super); in super' // (overrides self super');
|
|
|
|
in elpaDevelPackages);
|
|
|
|
in generateElpa { }
|