summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-09 04:55:03 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-09 04:55:03 -0800
commit5664866973f201bcebd95eec27b2a5a9a1987fe8 (patch)
tree7ebcd6cbf337c8fa99a20a8a4ce41207347fea48 /pkgs/development
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar.gz
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar.bz2
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar.lz
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar.xz
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.tar.zst
nixlib-5664866973f201bcebd95eec27b2a5a9a1987fe8.zip
opengrok: 0.12.5 -> 1.0
Semi-automatic update. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.0 with grep in /nix/store/x8i9mf6wvwj3n7il5kixfyrn0gdshnsb-opengrok-1.0
- found 1.0 in filename of file in /nix/store/x8i9mf6wvwj3n7il5kixfyrn0gdshnsb-opengrok-1.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/opengrok/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/opengrok/default.nix b/pkgs/development/tools/misc/opengrok/default.nix
index cdfa51d6f2bd..a0434f2d0e72 100644
--- a/pkgs/development/tools/misc/opengrok/default.nix
+++ b/pkgs/development/tools/misc/opengrok/default.nix
@@ -2,9 +2,9 @@
 
 stdenv.mkDerivation rec {
   name = "opengrok-${version}";
-  version = "0.12.5";
+  version = "1.0";
 
-  # 0.12.5 is the latest distributed as a .tar.gz file.
+  # 1.0 is the latest distributed as a .tar.gz file.
   # Newer are distribued as .zip so a source build is required.
 
   # if builded from source
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   # binary distribution
   src = fetchurl {
     url = https://github.com/OpenGrok/OpenGrok/files/213268/opengrok-0.12.1.5.tar.gz;
-    sha256 = "c3ce079f6ed1526c475cb4b9a7aa901f75507318c93b436d6c14eba4098e4ead";
+    sha256 = "1bafiq4s9sqldinl6fy931rm0x8zj2magfdlbi3nqlnidsghgkn3";
   };
 
   buildInputs = [ makeWrapper ];