mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, sq }:
|
|
buildGoModule rec {
|
|
pname = "sq";
|
|
version = "0.15.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neilotoole";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sYaQb7MFeTgJ/WPuCuMYjLcgmO/FhMGgOvY1HfGh2ag=";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
vendorSha256 = "sha256-P1NxcjRA0g9NK2EaEG5E9G2TywTp5uvHesQE7+EG4ag=";
|
|
|
|
# Some tests violates sandbox constraints.
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/neilotoole/sq/cli/buildinfo.Version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd sq \
|
|
--bash <($out/bin/sq completion bash) \
|
|
--fish <($out/bin/sq completion fish) \
|
|
--zsh <($out/bin/sq completion zsh)
|
|
'';
|
|
|
|
passthru.tests = {
|
|
version = testers.testVersion { package = sq; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Swiss army knife for data";
|
|
homepage = "https://sq.io/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ raitobezarius ];
|
|
};
|
|
}
|