From 06d63f6652863e492838f8f2aed8c380e559a4ee Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Mon, 29 Aug 2016 01:47:38 +0000 Subject: [PATCH] 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 --- pkgs/applications/networking/ipfs/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/ipfs/default.nix b/pkgs/applications/networking/ipfs/default.nix index a08a347ab28412..79e2185f04e68f 100644 --- a/pkgs/applications/networking/ipfs/default.nix +++ b/pkgs/applications/networking/ipfs/default.nix @@ -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; }; }