ipfs: build with generic go; mark as broken

This does not build after the binutils update due to go 1.5 failing and
ifps needs an upgrade to build with newer go.

cc packager @kamilchm
gstqt5
Robin Gloster 2016-08-29 01:47:38 +00:00
parent df935b01e7
commit 06d63f6652
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ stdenv, buildGo15Package, fetchFromGitHub }:
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGo15Package rec {
buildGoPackage rec {
name = "ipfs-${version}";
version = "i20160112--${stdenv.lib.strings.substring 0 7 rev}";
rev = "7070b4d878baad57dcc8da80080dd293aa46cabd";
@ -17,5 +17,6 @@ buildGo15Package rec {
meta = with stdenv.lib; {
description = "A global, versioned, peer-to-peer filesystem";
license = licenses.mit;
broken = true;
};
}