f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
31 lines
748 B
Nix
31 lines
748 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.nix;
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -delete_rpath $out/lib -add_rpath $bin $bin/bin/sift
|
|
'';
|
|
|
|
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.all;
|
|
};
|
|
}
|