Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 84cda85962e9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0806f0604a3a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 27, 2018

  1. melpaBuild: Get package-build from melpa/package-build

    This commit causes melpaBuild to use package-build from melpa/package-build
    instead of melpa/melpa. Development of package-build happens in the former
    repository whereas the latter is much larger, containing also the MELPA
    recipes. We do not need to fetch the MELPA recipes from melpa/melpa, as we fetch
    them one-by-one for Nixpkgs.
    ttuegel committed Nov 27, 2018
    Copy the full SHA
    fb77496 View commit details
  2. Merge pull request #51048 from ttuegel/emacs/package-build

    melpaBuild: Get package-build from melpa/package-build
    ttuegel authored Nov 27, 2018
    Copy the full SHA
    0806f06 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/build-support/emacs/melpa.nix
12 changes: 6 additions & 6 deletions pkgs/build-support/emacs/melpa.nix
Original file line number Diff line number Diff line change
@@ -35,11 +35,11 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
then pname
else ename;

melpa = fetchFromGitHub {
packageBuild = fetchFromGitHub {
owner = "melpa";
repo = "melpa";
rev = "7103313a7c31bb1ebb71419e365cd2e279ee4609";
sha256 = "0m10f83ix0mzjk0vjd4kkb1m1p4b8ha0ll2yjsgk9bqjd7fwapqb";
repo = "package-build";
rev = "0a22c3fbbf661822ec1791739953b937a12fa623";
sha256 = "0dpy5p34il600sc8ic5jdgb3glya9si3lrvhxab0swks8fdydjgs";
};

elpa2nix = ./elpa2nix.el;
@@ -51,7 +51,7 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
cp "$recipe" "$NIX_BUILD_TOP/recipes/$ename"
fi
ln -s "$melpa/package-build" "$NIX_BUILD_TOP/package-build"
ln -s "$packageBuild" "$NIX_BUILD_TOP/package-build"
mkdir -p "$NIX_BUILD_TOP/packages"
'';
@@ -67,7 +67,7 @@ import ./generic.nix { inherit lib stdenv emacs texinfo; } ({
cd "$NIX_BUILD_TOP"
emacs --batch -Q \
-L "$melpa/package-build" \
-L "$NIX_BUILD_TOP/package-build" \
-l "$melpa2nix" \
-f melpa2nix-build-package \
$ename $version