summary refs log tree commit diff
path: root/pkgs/development/tools/gox/default.nix
blob: 030a59ed20c59207f0805858ab4a62674b9b10b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "gox-${version}";
  version = "20140904-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549";

  
  goPackagePath = "github.com/mitchellh/gox";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/mitchellh/gox";
    sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1";
  };

  goDeps = ./deps.json;
}