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.

authored by Carl Sverre and committed by Franz Pletz 0e6fbf83 bdf4c0d2

+1 -1
+1 -1
pkgs/tools/text/sift/default.nix
··· 21 21 homepage = "https://sift-tool.org"; 22 22 maintainers = [ maintainers.carlsverre ]; 23 23 license = licenses.gpl3; 24 - platforms = platforms.all; 24 + platforms = platforms.linux; 25 25 }; 26 26 }