mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
18 lines
471 B
Nix
18 lines
471 B
Nix
{ stdenv, buildGoPackage, fetchgit }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "git-annex-remote-b2";
|
|
version = "20151212-${stdenv.lib.strings.substring 0 7 rev}";
|
|
rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba";
|
|
|
|
goPackagePath = "github.com/encryptio/git-annex-remote-b2";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/encryptio/git-annex-remote-b2";
|
|
sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
}
|