3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #91892 from r-ryantm/auto-update/zlog

zlog: 1.2.14 -> 1.2.15
This commit is contained in:
Mario Rodas 2020-06-30 19:56:23 -05:00 committed by GitHub
commit af1f7d58ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,33 +1,23 @@
{ stdenv, fetchzip }:
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.2.14";
version = "1.2.15";
pname = "zlog";
src = fetchzip {
name = "${pname}-${version}-src";
url = "https://github.com/HardySimpson/zlog/archive/${version}.tar.gz";
sha256 = "1qcrfmh2vbarkx7ij3gwk174qmgmhm2j336bfaakln1ixd9lkxa5";
src = fetchFromGitHub {
owner = "HardySimpson";
repo = pname;
rev = version;
sha256 = "10hzifgpml7jm43y6v8c8q0cr9ziyx9qxznafxyw6glhnlqnb7pb";
};
configurePhase = ''
sed -i 's;-Werror;;' src/makefile
'';
buildPhase = ''
mkdir -p $out
make PREFIX=$out
'';
installPhase = ''
make PREFIX=$out install
'';
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with stdenv.lib; {
description= "Reliable, high-performance, thread safe, flexible, clear-model, pure C logging library";
homepage = "http://hardysimpson.github.com/zlog";
homepage = "https://hardysimpson.github.io/zlog/";
license = licenses.lgpl21;
platforms = platforms.linux; # cannot test on something else
platforms = platforms.unix;
maintainers = [ maintainers.matthiasbeyer ];
};