From 0e6fbf83f8bec58b3d42459fdba99dca40c33ef2 Mon Sep 17 00:00:00 2001 From: Carl Sverre Date: Sun, 10 Jul 2016 02:17:47 -0700 Subject: [PATCH] sift: fix hydra build fail (#16820) For some reason I haven't been able to figure out, sift does not build on OSX. I think it is because sift uses cgo for some of its functionality which you can see here: https://github.com/svent/sift/blob/master/matching_cgo.go#L23 The error which hydra found (and is reproducible on OSX) can be seen here: https://hydra.nixos.org/build/37169149 Ideally I would like to get sift building on OSX, however my nix-fu is weak. Any suggestions are welcome. In the meantime I would like to get sift into one of the release channels for Linux where it works fine. --- pkgs/tools/text/sift/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/sift/default.nix b/pkgs/tools/text/sift/default.nix index 459334e2b3c8..9a93b64e3693 100644 --- a/pkgs/tools/text/sift/default.nix +++ b/pkgs/tools/text/sift/default.nix @@ -21,6 +21,6 @@ buildGoPackage rec { homepage = "https://sift-tool.org"; maintainers = [ maintainers.carlsverre ]; license = licenses.gpl3; - platforms = platforms.all; + platforms = platforms.linux; }; }