mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #12630 from hrdinka/add/b2
b2: init at git-26.01.2016
This commit is contained in:
commit
189693327b
30
pkgs/tools/backup/b2/default.nix
Normal file
30
pkgs/tools/backup/b2/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ fetchFromGitHub, pythonPackages, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "b2-${version}";
|
||||
version = "git-26.01.2016";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Backblaze";
|
||||
repo = "B2_Command_Line_Tool";
|
||||
rev = "b3f06fd53eb1c9a07740b962284753cba413a7b8";
|
||||
sha256 = "0kn2lkh8hp6g8q88glyz03z1r8a47pqm91dc5w083i334swqkjp2";
|
||||
};
|
||||
|
||||
buildInputs = [ pythonPackages.wrapPython ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp b2 $out/bin
|
||||
'';
|
||||
|
||||
postInstall = "wrapPythonPrograms";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/Backblaze/B2_Command_Line_Tool;
|
||||
description = "CLI for accessing Backblaze's B2 Cloud Storage";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ hrdinka ];
|
||||
};
|
||||
}
|
@ -972,6 +972,8 @@ let
|
||||
|
||||
asynk = callPackage ../tools/networking/asynk { };
|
||||
|
||||
b2 = callPackage ../tools/backup/b2 { };
|
||||
|
||||
bacula = callPackage ../tools/backup/bacula { };
|
||||
|
||||
bareos = callPackage ../tools/backup/bareos { };
|
||||
|
Loading…
Reference in New Issue
Block a user