about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/default.nix
blob: c32d29f2561a2926d3f0f7801f07d93e25bb2527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "git-annex-remote-b2";
  version = "unstable-2015-12-12";

  goPackagePath = "github.com/encryptio/git-annex-remote-b2";

  src = fetchFromGitHub {
    owner = "encryptio";
    repo = "git-annex-remote-b2";
    rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba";
    sha256 = "sha256-QhotoSdCpiuDyMARW5jExP2887XRMaaxVXBIutvPaYQ=";
  };

  goDeps = ./deps.nix;
}