summary refs log tree commit diff
path: root/pkgs/tools/typesetting/biber
diff options
context:
space:
mode:
authorVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-09-03 12:02:34 +0100
committerVincenzo Mantova <1962985+xworld21@users.noreply.github.com>2023-10-07 18:49:18 +0100
commit5d3d8b92fd1696141fc798c06c98defc73139122 (patch)
tree275174196737c400aafa82d42111ba43e2da0657 /pkgs/tools/typesetting/biber
parente910132c4fb09c47b734f2c6d7ec93bc94d9dac0 (diff)
downloadnixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar.gz
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar.bz2
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar.lz
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar.xz
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.tar.zst
nixpkgs-5d3d8b92fd1696141fc798c06c98defc73139122.zip
biber: use new texlive package source
Diffstat (limited to 'pkgs/tools/typesetting/biber')
-rw-r--r--pkgs/tools/typesetting/biber/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/biber/default.nix b/pkgs/tools/typesetting/biber/default.nix
index bf4740802be..b09a4b092f9 100644
--- a/pkgs/tools/typesetting/biber/default.nix
+++ b/pkgs/tools/typesetting/biber/default.nix
@@ -1,12 +1,11 @@
 { lib, stdenv, fetchurl, perlPackages, shortenPerlShebang, texlive }:
 
 let
-  biberSource = lib.head (builtins.filter (p: p.tlType == "source") texlive.biber.pkgs);
+  biberSource = texlive.pkgs.biber.texsource;
 in
 
 perlPackages.buildPerlModule {
-  pname = "biber";
-  inherit (biberSource) version;
+  inherit (biberSource) pname version;
 
   src = "${biberSource}/source/bibtex/biber/biblatex-biber.tar.gz";