summary refs log tree commit diff
path: root/pkgs/tools/backup/b2/default.nix
blob: 15a48b76579840a55dba0e868f405e01b76489de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ];
  };
}