summary refs log tree commit diff
path: root/pkgs/development/libraries/zlog
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-30 19:16:30 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-06-30 19:16:30 -0500
commitf94188f2a5d42e77a4d099c7eb3fb3282acc7032 (patch)
treef75230952a1615cfd36d772a142fd2bc732542b6 /pkgs/development/libraries/zlog
parentadba00e92aead713b067193e7d25ef0df55482bd (diff)
zlog: enable on darwin
Diffstat (limited to 'pkgs/development/libraries/zlog')
-rw-r--r--pkgs/development/libraries/zlog/default.nix26
1 files changed, 8 insertions, 18 deletions
diff --git a/pkgs/development/libraries/zlog/default.nix b/pkgs/development/libraries/zlog/default.nix
index b5662b63327e2..f0ca99b766799 100644
--- a/pkgs/development/libraries/zlog/default.nix
+++ b/pkgs/development/libraries/zlog/default.nix
@@ -1,33 +1,23 @@
-{ stdenv, fetchzip }:
+{ stdenv, fetchFromGitHub }:
 
 stdenv.mkDerivation rec {
   version = "1.2.15";
   pname = "zlog";
 
-  src = fetchzip {
-    name = "${pname}-${version}-src";
-    url = "https://github.com/HardySimpson/zlog/archive/${version}.tar.gz";
+  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 ];
   };