about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/gox/default.nix
blob: 25b80d9cf6977536d041394e327daf7c5d2f3826 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "gox";
  version = "20181025";

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

  src = fetchFromGitHub {
    owner = "mitchellh";
    repo = "gox";
    rev = "9cc487598128d0963ff9dcc51176e722788ec645";
    sha256 = "18indkdwq2m1wy95d71lgbf46jxxrfc5km1fys5laapz993h77v6";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    homepage = https://github.com/mitchellh/gox;
    description = "A dead simple, no frills Go cross compile tool";
    platforms = platforms.all;
    license = licenses.mpl20;
  };

}