nixpkgs/pkgs/development/libraries/zlog/default.nix
R. RyanTM 4ce580f99a zlog: 1.2.12 -> 1.2.14
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/zlog/versions
2019-06-18 12:16:44 -07:00

35 lines
823 B
Nix

{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
version = "1.2.14";
name = "zlog-${version}";
src = fetchzip {
name = "${name}-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 ];
};
}