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
555 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, curl, libxml2 }:
2015-04-21 22:49:16 +01:00
stdenv.mkDerivation {
2015-08-02 02:04:40 +01:00
name = "libs3-2015-04-23";
2015-04-21 22:49:16 +01:00
src = fetchFromGitHub {
owner = "bji";
repo = "libs3";
2015-08-02 02:04:40 +01:00
rev = "11a4e976c28ba525e7d61fbc3867c345a2af1519";
sha256 = "0xjjwyw14sk9am6s2m25hxi55vmsrc2yiawd6ln2lvg59xjcr48i";
2015-04-21 22:49:16 +01:00
};
buildInputs = [ curl libxml2 ];
DESTDIR = "\${out}";
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";
2015-08-02 02:04:40 +01:00
license = licenses.lgpl3;
2015-09-17 23:41:23 +01:00
platforms = platforms.linux;
2015-04-21 22:49:16 +01:00
};
}