summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-07-12 12:26:31 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-07-19 13:58:28 +0200
commit20882964f518acb2aba364a25d03c96fd149821a (patch)
treebac20f611dd359a31237aa7d5f50161ba8f3de56 /pkgs/development/libraries
parentd54659fe9628fc460b4b591fac84dfe4b1841231 (diff)
downloadnixlib-20882964f518acb2aba364a25d03c96fd149821a.tar
nixlib-20882964f518acb2aba364a25d03c96fd149821a.tar.gz
nixlib-20882964f518acb2aba364a25d03c96fd149821a.tar.bz2
nixlib-20882964f518acb2aba364a25d03c96fd149821a.tar.lz
nixlib-20882964f518acb2aba364a25d03c96fd149821a.tar.xz
nixlib-20882964f518acb2aba364a25d03c96fd149821a.tar.zst
nixlib-20882964f518acb2aba364a25d03c96fd149821a.zip
zlog: init at 1.2.12
[Bjørn: add name= to fetchzip, remove unneeded -r flag from sed.]
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/zlog/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/libraries/zlog/default.nix b/pkgs/development/libraries/zlog/default.nix
new file mode 100644
index 000000000000..d3dc41371de3
--- /dev/null
+++ b/pkgs/development/libraries/zlog/default.nix
@@ -0,0 +1,34 @@
+{ 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 = [ maintainers.matthiasbeyer ];
+  };
+
+}