Unverified Commit 803c1abb authored by 0x4A6F's avatar 0x4A6F Committed by GitHub
Browse files

Merge pull request #162835 from RaitoBezarius/sq

sq: init at 0.15.4
parents 34e9589d 9f19ba38
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testVersion, sq }:
buildGoModule rec {
  pname = "sq";
  version = "0.15.4";

  src = fetchFromGitHub {
    owner = "neilotoole";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-4CINLOHUVXQ+4e5I1fMqog6LubMm8RnbFmeuBOwALaw=";
  };

  nativeBuildInputs = [ installShellFiles ];

  vendorSha256 = "sha256-lNpWXKtnzwySzinNPxAKuaLqweWuS6zz8s2W4xXWlqM=";

  # 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 = 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -33204,6 +33204,8 @@ with pkgs;
  spyre = callPackage ../tools/security/spyre { };
  sq = callPackage ../development/tools/sq { };
  openspace = callPackage ../applications/science/astronomy/openspace { };
  stellarium = libsForQt5.callPackage ../applications/science/astronomy/stellarium { };