nixpkgs/pkgs/tools/misc/q-text-as-data/default.nix
2019-09-02 11:08:14 +02:00

36 lines
1 KiB
Nix

{ stdenvNoCC, fetchFromGitHub, python2 }:
stdenvNoCC.mkDerivation rec {
pname = "q-text-as-data";
version = "1.7.1";
src = fetchFromGitHub {
owner = "harelba";
repo = "q";
rev = version;
sha256 = "021c2sd6qscz1ipwzzjf43pfd311dcay7yralksl25rs0r7h3li2";
};
buildInputs = [ python2 ];
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp bin/q $out/bin
chmod +x $out/bin/q
'';
meta = with stdenvNoCC.lib; {
description = "Run SQL directly on CSV or TSV files";
longDescription = ''
q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).
q treats ordinary files as database tables, and supports all SQL constructs, such as WHERE, GROUP BY, JOINs etc. It supports automatic column name and column type detection, and provides full support for multiple encodings.
'';
homepage = "http://harelba.github.io/q/";
license = licenses.gpl3;
maintainers = [ maintainers.taneb ];
platforms = platforms.all;
};
}