nixpkgs/pkgs/development/libraries/zlog/default.nix
Matthias Beyer ce1c1e3093 Remove maintainership
With this patch I remove myself as a maintainer for all packages I
currently maintain.

This is due the fact that I will be basically off the grid from May 2018
until early 2019, as I will be on a trip through north america.

I will revert this patch as soon as I'm back, as I plan to continue
contributing to nixpkgs then.
But as I cannot maintain anything during that time, I'd like to get this
patch merged.

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2018-04-06 10:57:19 +02:00

35 lines
797 B
Nix

{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
version = "1.2.12";
name = "zlog-${version}";
src = fetchzip {
name = "${name}-src";
url = "https://github.com/HardySimpson/zlog/archive/${version}.tar.gz";
sha256 = "1ychld0dcfdak2wnmkj941i0xav6ynlb3n6hz1kz03yy74ll2fqi";
};
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 = [ ];
};
}