pql: init at 0.1.0
This commit is contained in:
parent
90ddabe7ae
commit
f4e2e47baa
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/pq/pql/package.nix
Normal file
28
pkgs/by-name/pq/pql/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pql";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "runreveal";
|
||||
repo = "pql";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-xNWwjDdnF4+IvS814iJlqCFYNOGNF2nHEnnbRqxJsjM=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-j/R+1PWfX+lmm99cHWSuo+v8RxKg089Bvb4rFHpmpfE=";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pipelined Query Language";
|
||||
homepage = "https://github.com/runreveal/pql";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ dit7ya ];
|
||||
mainProgram = "pql";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue