summary refs log tree commit diff
path: root/pkgs/tools/typesetting/biber
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-04 13:04:02 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-04 13:11:31 +0100
commit1046761a3e6a87ab2a07a64b449a114dba9052ae (patch)
treebabef2f2fbd4a410540f019a825f60ba8deb7488 /pkgs/tools/typesetting/biber
parent40f55d68708660cf0b663bd23929d64304e648a3 (diff)
downloadnixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar.gz
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar.bz2
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar.lz
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar.xz
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.tar.zst
nixpkgs-1046761a3e6a87ab2a07a64b449a114dba9052ae.zip
biber: 2.11 -> 2.12
Biber 2.12 is for biblatex 3.12.
Diffstat (limited to 'pkgs/tools/typesetting/biber')
-rw-r--r--pkgs/tools/typesetting/biber/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/tools/typesetting/biber/default.nix b/pkgs/tools/typesetting/biber/default.nix
index 123147cb5f1..7348da3c7d6 100644
--- a/pkgs/tools/typesetting/biber/default.nix
+++ b/pkgs/tools/typesetting/biber/default.nix
@@ -1,17 +1,14 @@
 { stdenv, fetchFromGitHub, perlPackages }:
 
-# builds but doesn't work with perl 5.24, see discussion in #40826
-# TODO: build with perl >=5.26 and try to enable tests
-
 perlPackages.buildPerlModule rec {
   name = "biber-${version}";
-  version = "2.11";
+  version = "2.12";
 
   src = fetchFromGitHub {
     owner = "plk";
     repo = "biber";
     rev = "v${version}";
-    sha256 = "0qgkc1k9n36yfmndwz879pak6mjphld0p85lzn9g2ng0vhxsifzz";
+    sha256 = "1g1hi6zvf2hmrjly1sidjaxy5440gfqm4p7p3n7kayshnjsmlskx";
   };
 
   buildInputs = with perlPackages; [
@@ -25,8 +22,9 @@ perlPackages.buildPerlModule rec {
     TestDifferences
   ];
 
-  # Tests depend on the precise Unicode-Collate version (expects 1.19, but we have 1.25)
-  doCheck = false;
+  checkInputs = with perlPackages; [
+    UnicodeCollate
+  ];
 
   meta = with stdenv.lib; {
     description = "Backend for BibLaTeX";