summary refs log tree commit diff
path: root/pkgs/development/libraries/libs3
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-12-27 17:34:29 +0000
committerOrivej Desh <orivej@gmx.fr>2018-12-27 17:34:29 +0000
commit992fc1ae5434458bbbc37f7c7a64231ead940ccf (patch)
tree50839c0165a9a6c8cf08101af5897c01e329b633 /pkgs/development/libraries/libs3
parent39b3cad721ce1fe9f9a7cb74d3ed7622ac9fd5d1 (diff)
downloadnixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar.gz
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar.bz2
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar.lz
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar.xz
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.tar.zst
nixpkgs-992fc1ae5434458bbbc37f7c7a64231ead940ccf.zip
libs3: 2017-06-01 -> 2018-12-03
Diffstat (limited to 'pkgs/development/libraries/libs3')
-rw-r--r--pkgs/development/libraries/libs3/default.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libs3/default.nix b/pkgs/development/libraries/libs3/default.nix
index 540d84dc244..dfec4bc4897 100644
--- a/pkgs/development/libraries/libs3/default.nix
+++ b/pkgs/development/libraries/libs3/default.nix
@@ -1,26 +1,23 @@
 { stdenv, fetchFromGitHub, curl, libxml2 }:
 
 stdenv.mkDerivation {
-  name = "libs3-2017-06-01";
+  name = "libs3-2018-12-03";
 
   src = fetchFromGitHub {
     owner = "bji";
     repo = "libs3";
-    rev = "fd8b149044e429ad30dc4c918f0713cdd40aadd2";
-    sha256 = "0a4c9rsd3wildssvnvph6cd11adn0p3rd4l02z03lvxkjhm20gw3";
+    rev = "111dc30029f64bbf82031f3e160f253a0a63c119";
+    sha256 = "1ahf08hc7ql3fazfmlyj9vrhq7cvarsmgn2v8149y63zr1fl61hs";
   };
 
   buildInputs = [ curl libxml2 ];
 
-  # added to fix build with gcc7, review on update
-  NIX_CFLAGS_COMPILE = [ "-Wno-error=format-truncation" ];
-
-  DESTDIR = "\${out}";
+  makeFlags = [ "DESTDIR=$(out)" ];
 
   meta = with stdenv.lib; {
     homepage = https://github.com/bji/libs3;
     description = "A library for interfacing with amazon s3";
-    license = licenses.lgpl3;
+    license = licenses.lgpl3Plus;
     platforms = platforms.linux;
   };
 }