My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/textql/default.nix

33 lines
748 B

{ lib, buildGoPackage, fetchFromGitHub, sqlite }:
buildGoPackage rec {
pname = "textql";
version = "2.0.3";
goPackagePath = "github.com/dinedal/textql";
src = fetchFromGitHub {
owner = "dinedal";
repo = "textql";
rev = version;
sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3";
};
postInstall = ''
install -Dm644 -t $out/share/man/man1 ${src}/man/textql.1
'';
# needed for tests
nativeBuildInputs = [ sqlite ];
goDeps = ./deps.nix;
doCheck = true;
meta = with lib; {
description = "Execute SQL against structured text like CSV or TSV";
homepage = "https://github.com/dinedal/textql";
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
}