mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
libs3: Add derivation
This commit is contained in:
parent
7b34703b70
commit
5de3e8fa46
22
pkgs/development/libraries/libs3/default.nix
Normal file
22
pkgs/development/libraries/libs3/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchgit, curl, libxml2 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libs3-2015-01-09";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://github.com/bji/libs3.git";
|
||||
rev = "4d21fdc0857b88c964649b321057d7105d1e4da3";
|
||||
sha256 = "058sixppk078mdn9ii3swg87nbpgl86llz9mdhj5km5m53a7dnjw";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -6764,6 +6764,8 @@ let
|
||||
|
||||
librsync_0_9 = callPackage ../development/libraries/librsync/0.9.nix { };
|
||||
|
||||
libs3 = callPackage ../development/libraries/libs3 { };
|
||||
|
||||
libsearpc = callPackage ../development/libraries/libsearpc { };
|
||||
|
||||
libsigcxx = callPackage ../development/libraries/libsigcxx { };
|
||||
|
Loading…
Reference in New Issue
Block a user