about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2022-03-22 23:49:23 -0500
committerGitHub <noreply@github.com>2022-03-23 05:49:23 +0100
commit9994b33f0e82661ab1d2a837ad2da42d3e121e4c (patch)
tree45e9fb72bda5cf9e304fbd6290629e6bec81f34a
parent7c641c7a5d6cc9a65b50b45720bf174e3ece4081 (diff)
biblatex-check: 2019-11-09 -> 1.0.1 (#157597)
-rw-r--r--pkgs/tools/typesetting/biblatex-check/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/typesetting/biblatex-check/default.nix b/pkgs/tools/typesetting/biblatex-check/default.nix
index 63bf7cf1d71ad..c929d59015027 100644
--- a/pkgs/tools/typesetting/biblatex-check/default.nix
+++ b/pkgs/tools/typesetting/biblatex-check/default.nix
@@ -1,14 +1,14 @@
 { lib, stdenv, fetchFromGitHub, python3 }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   pname = "biblatex-check";
-  version = "2019-11-09";
+  version = "1.0.1";
 
   src = fetchFromGitHub {
     owner = "Pezmc";
     repo = "BibLatex-Check";
-    rev = "2db50bf94d1480f37edf1b3619e73baf4ef85938";
-    sha256 = "1bq0yqckhssazwkivipdjmn1jpsf301i4ppyl88qhc5igx39wg25";
+    rev = "v${version}";
+    sha256 = "sha256-Pe6Ume7vH8WJG2EqOw31g3VYilfFsDBmNHtHcUXxqf0=";
   };
 
   buildInputs = [ python3 ];