0e6fbf83f8
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.
27 lines
617 B
Nix
27 lines
617 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "sift-${version}";
|
|
version = "0.8.0";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/svent/sift";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "svent";
|
|
repo = "sift";
|
|
sha256 = "1nb042k420xr6000ipwhqn41vg8jfp6ghq4z7y1sjnndkrhclzm1";
|
|
};
|
|
|
|
goDeps = ./deps.json;
|
|
|
|
meta = with lib; {
|
|
description = "sift is a fast and powerful alternative to grep";
|
|
homepage = "https://sift-tool.org";
|
|
maintainers = [ maintainers.carlsverre ];
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|