mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
5664866973
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
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ fetchurl, stdenv, jre, ctags, makeWrapper, coreutils, git }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opengrok-${version}";
|
|
version = "1.0";
|
|
|
|
# 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
|
|
#src = fetchurl {
|
|
# url = "https://github.com/OpenGrok/OpenGrok/archive/${version}.tar.gz";
|
|
# sha256 = "01r7ipnj915rnyxyqrnmjfagkip23q5lx9g787qb7qrnbvgfi118";
|
|
#};
|
|
|
|
# binary distribution
|
|
src = fetchurl {
|
|
url = https://github.com/OpenGrok/OpenGrok/files/213268/opengrok-0.12.1.5.tar.gz;
|
|
sha256 = "1bafiq4s9sqldinl6fy931rm0x8zj2magfdlbi3nqlnidsghgkn3";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -a * $out/
|
|
substituteInPlace $out/bin/OpenGrok --replace /bin/uname ${coreutils}/bin/uname
|
|
wrapProgram $out/bin/OpenGrok \
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ ctags git ]}" \
|
|
--set JAVA_HOME "${jre}" \
|
|
--set OPENGROK_TOMCAT_BASE "/var/tomcat"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Source code search and cross reference engine";
|
|
homepage = https://opengrok.github.io/OpenGrok/;
|
|
license = licenses.cddl;
|
|
maintainers = [ maintainers.lethalman ];
|
|
};
|
|
}
|