bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#37976: 27.0.50; Dependency reversal of seq-subseq and cl-subseq caus


From: John Wiegley
Subject: bug#37976: 27.0.50; Dependency reversal of seq-subseq and cl-subseq causes regression when using seq from ELPA
Date: Fri, 15 Nov 2019 11:20:50 -0800
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (darwin)

>>>>> "SM" == Stefan Monnier <monnier@iro.umontreal.ca> writes:

SM> It does look like the problem is on NixOS's side, indeed.

I can confirm that stubbing this in Nix based on the Emacs version fixes the
problem for me:

    seq = if super.emacs.version == "27.0"
      then mkDerivation rec {
        name = "seq-stub";
        version = "stub";
        src = ./.;
        phases = [ "installPhase" ];
        installPhase = ''
          mkdir $out
          touch $out/.empty
        '';
      }
      else super.seq;

We'll have to ask the maintainers of the Emacs portion of nixpkgs to do
something similar on their side.

-- 
John Wiegley                  GPG fingerprint = 4710 CF98 AF9B 327B B80F
http://newartisans.com                          60E1 46C4 BD1A 7AC1 4BA2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]