about summary refs log tree commit diff
path: root/pkgs/development/embedded
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-04 20:02:27 +0000
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-11-05 11:56:02 +0000
commit4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e (patch)
tree83468823916ead40604c730b97355b543a606fd6 /pkgs/development/embedded
parente132b36dcee39b00cf7005fbc7c65496657fa509 (diff)
downloadnixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar.gz
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar.bz2
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar.lz
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar.xz
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.tar.zst
nixlib-4d77ab5cb57ef029c1fcb55eac5aeae3ee6be74e.zip
avrdude: replace texlive.combined.scheme-medium with texliveMedium
Diffstat (limited to 'pkgs/development/embedded')
-rw-r--r--pkgs/development/embedded/avrdude/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/embedded/avrdude/default.nix b/pkgs/development/embedded/avrdude/default.nix
index 556db9dc303c..0f6bd8b6befc 100644
--- a/pkgs/development/embedded/avrdude/default.nix
+++ b/pkgs/development/embedded/avrdude/default.nix
@@ -1,7 +1,7 @@
 { lib, stdenv, fetchFromGitHub, cmake, bison, flex, libusb-compat-0_1, libelf
 , libftdi1, readline
 # documentation building is broken on darwin
-, docSupport ? (!stdenv.isDarwin), texlive, texinfo, texi2html, unixtools }:
+, docSupport ? (!stdenv.isDarwin), texliveMedium, texinfo, texi2html, unixtools }:
 
 stdenv.mkDerivation rec {
   pname = "avrdude";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake bison flex ] ++ lib.optionals docSupport [
     unixtools.more
-    texlive.combined.scheme-medium
+    texliveMedium
     texinfo
     texi2html
   ];