summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 10:41:25 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 10:41:25 +0100
commit15d41619317efa2a84ac8798736772c1b9a14e4e (patch)
treef24cb9205f79578638b0470b4c48e4602865641e /pkgs/tools/typesetting
parent2c00aed6b1504455d267bf08abfa621601575f8d (diff)
downloadnixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar.gz
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar.bz2
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar.lz
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar.xz
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.tar.zst
nixpkgs-15d41619317efa2a84ac8798736772c1b9a14e4e.zip
biblatex-check: use python3
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/biblatex-check/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/biblatex-check/default.nix b/pkgs/tools/typesetting/biblatex-check/default.nix
index 606e07730e4..63bf7cf1d71 100644
--- a/pkgs/tools/typesetting/biblatex-check/default.nix
+++ b/pkgs/tools/typesetting/biblatex-check/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, python }:
+{ lib, stdenv, fetchFromGitHub, python3 }:
 
 stdenv.mkDerivation {
   pname = "biblatex-check";
@@ -11,7 +11,9 @@ stdenv.mkDerivation {
     sha256 = "1bq0yqckhssazwkivipdjmn1jpsf301i4ppyl88qhc5igx39wg25";
   };
 
-  buildInputs = [ python ];
+  buildInputs = [ python3 ];
+
+  strictDeps = true;
 
   installPhase = ''
     install -Dm755 biblatex_check.py $out/bin/biblatex-check