summary refs log tree commit diff
path: root/pkgs/build-support/emacs/generic.nix
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-01-26 15:57:21 +0100
committerDaniël de Kok <me@danieldk.eu>2021-01-26 16:15:03 +0100
commitf46bfb972d1313b1c201569e373fe225fb803ae4 (patch)
treeab76aedd14ebe15db01695f397f3ad6588053154 /pkgs/build-support/emacs/generic.nix
parent1d0d9d26c638c49b26897e20b74dce15ba0af369 (diff)
downloadnixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar.gz
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar.bz2
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar.lz
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar.xz
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.tar.zst
nixpkgs-f46bfb972d1313b1c201569e373fe225fb803ae4.zip
emacs.pkgs.trivialBuild: add missing stdenv argument
Fix fallout of #110687 (generic.nix requires stdenv).
Diffstat (limited to 'pkgs/build-support/emacs/generic.nix')
-rw-r--r--pkgs/build-support/emacs/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/emacs/generic.nix b/pkgs/build-support/emacs/generic.nix
index 588699517ba..d84fa24923d 100644
--- a/pkgs/build-support/emacs/generic.nix
+++ b/pkgs/build-support/emacs/generic.nix
@@ -1,6 +1,6 @@
 # generic builder for Emacs packages
 
-{ lib, stdenv, emacs, texinfo }:
+{ lib, stdenv, emacs, texinfo, ... }:
 
 with lib;