nixpkgs/pkgs/development/tools/textql/default.nix

26 lines
614 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 16:42:33 +00:00
buildGoPackage rec {
name = "textql-${version}";
version = "2.0.3";
rev = "${version}";
2017-09-22 19:24:43 +00:00
2016-06-03 16:42:33 +00:00
goPackagePath = "github.com/dinedal/textql";
src = fetchFromGitHub {
2016-06-03 16:42:33 +00:00
inherit rev;
owner = "dinedal";
repo = "textql";
2016-06-03 16:42:33 +00:00
sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3";
};
goDeps = ./deps.nix;
2016-06-03 16:42:33 +00:00
meta = with stdenv.lib; {
description = "Execute SQL against structured text like CSV or TSV";
homepage = https://github.com/dinedal/textql;
license = licenses.mit;
maintainers = with maintainers; [ vrthra ];
};
}