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


                         
                     
                 

                  
                                     
                                                                           
                                                                    



















                                                                                                          
                                                


    
{ stdenv, fetchzip }:

stdenv.mkDerivation rec {
  version = "1.2.14";
  pname = "zlog";

  src = fetchzip {
    name = "${pname}-${version}-src";
    url = "https://github.com/HardySimpson/zlog/archive/${version}.tar.gz";
    sha256 = "1qcrfmh2vbarkx7ij3gwk174qmgmhm2j336bfaakln1ixd9lkxa5";
  };

  configurePhase = ''
    sed -i 's;-Werror;;' src/makefile
  '';

  buildPhase = ''
    mkdir -p $out
    make PREFIX=$out
  '';

  installPhase = ''
    make PREFIX=$out install
  '';

  meta = with stdenv.lib; {
    description= "Reliable, high-performance, thread safe, flexible, clear-model, pure C logging library";
    homepage = http://hardysimpson.github.com/zlog;
    license = licenses.lgpl21;
    platforms = platforms.linux; # cannot test on something else
    maintainers = [ maintainers.matthiasbeyer ];
  };

}