summary refs log tree commit diff
path: root/pkgs/development/libraries/log4shib/default.nix
blob: ccf246c044e99447e440eeb8e6ebfe63b0cd783b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchgit, autoreconfHook }:

stdenv.mkDerivation {
  pname = "log4shib";
  version = "1.0.9";

  src = fetchgit {
    url = "https://git.shibboleth.net/git/cpp-log4shib.git";
    rev = "a1afe19b7b49c32fcb03e6d72809501b8965cf85";
    sha256 = "06rrc5l6qxlc8abzim2jcxwz2c577qrjqx15cbfqq1zfqagj9hix";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with stdenv.lib; {
    description = "A forked version of log4cpp that has been created for the Shibboleth project";
    maintainers = [ maintainers.jammerful ];
    license = licenses.lgpl21;
    homepage = http://log4cpp.sf.net;
  };
}