mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
bcb89d6945
https://github.com/neilotoole/sq/releases/tag/v0.46.1 https://github.com/neilotoole/sq/releases/tag/v0.46.0 https://github.com/neilotoole/sq/releases/tag/v0.45.0 https://github.com/neilotoole/sq/releases/tag/v0.44.0 https://github.com/neilotoole/sq/releases/tag/v0.43.1 https://github.com/neilotoole/sq/releases/tag/v0.43.0
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, sq }:
|
|
|
|
buildGoModule rec {
|
|
pname = "sq";
|
|
version = "0.46.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neilotoole";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-TjJ3XDyHHZWMAYV5bJQffH4a9AheZWraov3d4HB/yno=";
|
|
};
|
|
|
|
vendorHash = "sha256-DIYSUIUHEiRv+pPZ2hE/2X4GmT3lvdWd/mkl1wbjID4=";
|
|
|
|
proxyVendor = true;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# Some tests violates sandbox constraints.
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/neilotoole/sq/cli/buildinfo.Version=v${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;
|
|
version = "v${version}";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Swiss army knife for data";
|
|
homepage = "https://sq.io/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ raitobezarius ];
|
|
};
|
|
}
|