Merge pull request #110861 from danieldk/fix-emacs-trivial-build
emacs.pkgs.trivialBuild: add missing stdenv argument
This commit is contained in:
commit
a49d810552
|
@ -1,6 +1,6 @@
|
||||||
# generic builder for Emacs packages
|
# generic builder for Emacs packages
|
||||||
|
|
||||||
{ lib, stdenv, emacs, texinfo }:
|
{ lib, stdenv, emacs, texinfo, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
# trivial builder for Emacs packages
|
# trivial builder for Emacs packages
|
||||||
|
|
||||||
{ lib, texinfo, ... }@envargs:
|
{ callPackage, lib, ... }@envargs:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
args:
|
args:
|
||||||
|
|
||||||
import ./generic.nix envargs ({
|
callPackage ./generic.nix envargs ({
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
runHook preBuild
|
runHook preBuild
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue