2015-04-28 20:41:40 +00:00
|
|
|
{ stdenv, fetchFromGitHub, curl, libxml2 }:
|
2015-04-21 21:49:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libs3-2015-01-09";
|
|
|
|
|
2015-04-28 20:41:40 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bji";
|
|
|
|
repo = "libs3";
|
2015-04-21 21:49:16 +00:00
|
|
|
rev = "4d21fdc0857b88c964649b321057d7105d1e4da3";
|
2015-04-28 20:41:40 +00:00
|
|
|
sha256 = "1c33h8lzlpmsbkymd2dac9g8hqhd6j6yzdjrhha8bcqyys6vcpy3";
|
2015-04-21 21:49:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ curl libxml2 ];
|
|
|
|
|
|
|
|
DESTDIR = "\${out}";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/bji/libs3;
|
2015-05-21 13:41:06 +00:00
|
|
|
description = "A library for interfacing with amazon s3";
|
|
|
|
license = licenses.gpl3;
|
2015-04-21 21:49:16 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|