summary refs log tree commit diff
path: root/pkgs/development/tools/gox/default.nix
blob: 7b58bafcd62752bf0515fa8efe160ed2e6256da1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with goPackages;

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;
}