1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libs3/default.nix

24 lines
554 B
Nix
Raw Normal View History

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