3
0
Fork 0
forked from mirrors/nixpkgs

zlog: enable on darwin

This commit is contained in:
Mario Rodas 2020-06-30 19:16:30 -05:00
parent adba00e92a
commit f94188f2a5
No known key found for this signature in database
GPG key ID: 325649BCA6D53027

View file

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