summary refs log blame commit diff
path: root/pkgs/development/libraries/librelp/default.nix
blob: bcc3e16dae89701c52dc7dea847c9e6abc97a1cb (plain) (tree)
1
2
3
4
5
6
7
8
9






                         

                         

                    
 




                                                                    

    

                                                   

                           
                                               
                                          
                            
                                

    
{ stdenv, fetchFromGitHub
, autoreconfHook
, gnutls
, openssl
, pkgconfig
, zlib
}:

stdenv.mkDerivation rec {
  pname = "librelp";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "rsyslog";
    repo = "librelp";
    rev = "v${version}";
    sha256 = "1q0k8zm7p6wpkri419kkpz734lp1hnxfqx1aa3xys4pj7zgx9jck";
  };

  nativeBuildInputs = [ pkgconfig autoreconfHook ];
  buildInputs = [ gnutls zlib openssl ];

  meta = with stdenv.lib; {
    description = "A reliable logging library";
    homepage = "https://www.librelp.com/";
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}