lol
1{ stdenv, fetchgit, autoreconfHook }:
2
3stdenv.mkDerivation rec {
4 name = "log4shib-${version}";
5 version = "1.0.9";
6
7 src = fetchgit {
8 url = "https://git.shibboleth.net/git/cpp-log4shib.git";
9 rev = "a1afe19b7b49c32fcb03e6d72809501b8965cf85";
10 sha256 = "06rrc5l6qxlc8abzim2jcxwz2c577qrjqx15cbfqq1zfqagj9hix";
11 };
12
13 nativeBuildInputs = [ autoreconfHook ];
14
15 meta = with stdenv.lib; {
16 description = "A forked version of log4cpp that has been created for the Shibboleth project";
17 maintainers = [ maintainers.jammerful ];
18 };
19}