mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
19 lines
487 B
Nix
19 lines
487 B
Nix
|
{ stdenv, fetchgit, autoreconfHook }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "log4shib-${version}";
|
||
|
version = "1.0.9";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "https://git.shibboleth.net/git/cpp-log4shib.git";
|
||
|
rev = "a1afe19b7b49c32fcb03e6d72809501b8965cf85";
|
||
|
sha256 = "06rrc5l6qxlc8abzim2jcxwz2c577qrjqx15cbfqq1zfqagj9hix";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ autoreconfHook ];
|
||
|
|
||
|
meta = {
|
||
|
description = "A forked version of log4cpp that has been created for the Shibboleth project";
|
||
|
};
|
||
|
}
|