gox: 20140904 -> 0.4.0

+17 -10
+15 -8
pkgs/development/tools/gox/default.nix
··· 1 - { stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: 2 3 buildGoPackage rec { 4 name = "gox-${version}"; 5 - version = "20140904-${stdenv.lib.strings.substring 0 7 rev}"; 6 - rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549"; 7 8 - 9 goPackagePath = "github.com/mitchellh/gox"; 10 11 - src = fetchgit { 12 - inherit rev; 13 - url = "https://github.com/mitchellh/gox"; 14 - sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1"; 15 }; 16 17 goDeps = ./deps.nix; 18 }
··· 1 + { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 3 buildGoPackage rec { 4 name = "gox-${version}"; 5 + version = "0.4.0"; 6 7 goPackagePath = "github.com/mitchellh/gox"; 8 9 + src = fetchFromGitHub { 10 + owner = "mitchellh"; 11 + repo = "gox"; 12 + rev = "v${version}"; 13 + sha256 = "1q4fdkw904mrmh1q5z8pfd3r0gcn5dm776kldqawddy93iiwnp8r"; 14 }; 15 16 goDeps = ./deps.nix; 17 + 18 + meta = with stdenv.lib; { 19 + homepage = https://github.com/mitchellh/gox; 20 + description = "A dead simple, no frills Go cross compile tool"; 21 + platforms = platforms.all; 22 + license = licenses.mpl20; 23 + }; 24 + 25 }
+2 -2
pkgs/development/tools/gox/deps.nix
··· 4 fetch = { 5 type = "git"; 6 url = "https://github.com/mitchellh/iochan"; 7 - rev = "b584a329b193e206025682ae6c10cdbe03b0cd77"; 8 - sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b"; 9 }; 10 } 11 ]
··· 4 fetch = { 5 type = "git"; 6 url = "https://github.com/mitchellh/iochan"; 7 + rev = "87b45ffd0e9581375c491fef3d32130bb15c5bd7"; 8 + sha256 = "1435kdcx3j1xgr6mm5c7w7hjx015jb20yfqlkp93q143hspf02fx"; 9 }; 10 } 11 ]