Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 39b3cad721ce
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 992fc1ae5434
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 27, 2018

  1. Copy the full SHA
    992fc1a View commit details
Showing with 5 additions and 8 deletions.
  1. +5 −8 pkgs/development/libraries/libs3/default.nix
13 changes: 5 additions & 8 deletions pkgs/development/libraries/libs3/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}