Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / log4shib / default.nix
blobe204fa92bfd1bb35b880836abea68a0edf6807d0
1 { lib, stdenv, fetchgit, autoreconfHook }:
3 stdenv.mkDerivation {
4   pname = "log4shib";
5   version = "1.0.9";
7   src = fetchgit {
8     url = "https://git.shibboleth.net/git/cpp-log4shib.git";
9     rev = "a1afe19b7b49c32fcb03e6d72809501b8965cf85";
10     sha256 = "06rrc5l6qxlc8abzim2jcxwz2c577qrjqx15cbfqq1zfqagj9hix";
11   };
13   nativeBuildInputs = [ autoreconfHook ];
15   CXXFLAGS = "-std=c++11";
17   meta = with lib; {
18     description = "A forked version of log4cpp that has been created for the Shibboleth project";
19     maintainers = [ maintainers.jammerful ];
20     license = licenses.lgpl21;
21     homepage = "http://log4cpp.sf.net";
22   };