forked from mirrors/nixpkgs
emacs.pkgs.trivialBuild: add missing stdenv argument
Fix fallout of #110687 (generic.nix requires stdenv).
This commit is contained in:
parent
1d0d9d26c6
commit
f46bfb972d
|
@ -1,6 +1,6 @@
|
|||
# generic builder for Emacs packages
|
||||
|
||||
{ lib, stdenv, emacs, texinfo }:
|
||||
{ lib, stdenv, emacs, texinfo, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# trivial builder for Emacs packages
|
||||
|
||||
{ lib, texinfo, ... }@envargs:
|
||||
{ callPackage, lib, ... }@envargs:
|
||||
|
||||
with lib;
|
||||
|
||||
args:
|
||||
|
||||
import ./generic.nix envargs ({
|
||||
callPackage ./generic.nix envargs ({
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
|
||||
|
|
Loading…
Reference in a new issue