8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
17 lines
434 B
Nix
17 lines
434 B
Nix
{ 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;
|
|
}
|