2015-04-28 21:41:40 +01:00
|
|
|
{ stdenv, fetchFromGitHub, curl, libxml2 }:
|
2015-04-21 22:49:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-12-27 17:34:29 +00:00
|
|
|
name = "libs3-2018-12-03";
|
2015-04-21 22:49:16 +01:00
|
|
|
|
2015-04-28 21:41:40 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bji";
|
|
|
|
repo = "libs3";
|
2018-12-27 17:34:29 +00:00
|
|
|
rev = "111dc30029f64bbf82031f3e160f253a0a63c119";
|
|
|
|
sha256 = "1ahf08hc7ql3fazfmlyj9vrhq7cvarsmgn2v8149y63zr1fl61hs";
|
2015-04-21 22:49:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ curl libxml2 ];
|
|
|
|
|
2018-12-27 17:34:29 +00:00
|
|
|
makeFlags = [ "DESTDIR=$(out)" ];
|
2015-04-21 22:49:16 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/bji/libs3;
|
2015-05-21 14:41:06 +01:00
|
|
|
description = "A library for interfacing with amazon s3";
|
2018-12-27 17:34:29 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2015-09-17 23:41:23 +01:00
|
|
|
platforms = platforms.linux;
|
2015-04-21 22:49:16 +01:00
|
|
|
};
|
|
|
|
}
|