2022-03-30 09:31:56 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "git-annex-remote-b2";
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "unstable-2015-12-12";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/encryptio/git-annex-remote-b2";
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "encryptio";
|
|
|
|
repo = "git-annex-remote-b2";
|
|
|
|
rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba";
|
|
|
|
sha256 = "sha256-QhotoSdCpiuDyMARW5jExP2887XRMaaxVXBIutvPaYQ=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
}
|