summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-08 12:33:16 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-08 12:33:16 -0800
commit8e3a3102946bc655711eaa6903be14031022bb07 (patch)
tree1ea75356f614e6283b1c4925171c0a6cef1bd983 /pkgs/applications/graphics
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar.gz
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar.bz2
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar.lz
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar.xz
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.tar.zst
nixlib-8e3a3102946bc655711eaa6903be14031022bb07.zip
gocr: 0.50 -> 0.51
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/6mm4a7nrr7ahv7wc47c137f28frhkrm5-gocr-0.51/bin/gocr --help` got 0 exit code
- ran `/nix/store/6mm4a7nrr7ahv7wc47c137f28frhkrm5-gocr-0.51/bin/gocr --help` and found version 0.51
- found 0.51 with grep in /nix/store/6mm4a7nrr7ahv7wc47c137f28frhkrm5-gocr-0.51
- found 0.51 in filename of file in /nix/store/6mm4a7nrr7ahv7wc47c137f28frhkrm5-gocr-0.51
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gocr/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/gocr/default.nix b/pkgs/applications/graphics/gocr/default.nix
index 6fe37d605ae1..98a32ad18995 100644
--- a/pkgs/applications/graphics/gocr/default.nix
+++ b/pkgs/applications/graphics/gocr/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, tk }:
 
 stdenv.mkDerivation rec {
-  name = "gocr-0.50";
+  name = "gocr-0.51";
 
   src = fetchurl {
     url = "http://www-e.uni-magdeburg.de/jschulen/ocr/${name}.tar.gz";
-    sha256 = "1dgmcpapy7h68d53q2c5d0bpgzgfb2nw2blndnx9qhc7z12149mw";
+    sha256 = "14i6zi6q11h6d0qds2cpvgvhbxk5xaa027h8cd0wy1zblh7sxckf";
   };
 
   buildFlags = [ "all" "libs" ];