uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
39
pkgs/development/tools/textql/default.nix
Normal file
39
pkgs/development/tools/textql/default.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, fetchpatch, sqlite }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "textql";
|
||||
version = "unstable-2021-07-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dinedal";
|
||||
repo = "textql";
|
||||
rev = "fca00ecc76c8d9891b195ad2c1359d39f0213604";
|
||||
sha256 = "1v1nq7q2jr7d7kimlbykmh9d73cw750ybcz7v7l091qxjsii3irm";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# fix build with go 1.17
|
||||
(fetchpatch {
|
||||
url = "https://github.com/jawn-smith/textql/commit/a0d7038c8c30671dfd618f47322814ab492c11a1.patch";
|
||||
sha256 = "1yjdbwipjxxhfcqlj1z6ngsm7dr8gfp4l61jynn2iw7f02cn1yck";
|
||||
})
|
||||
];
|
||||
|
||||
vendorSha256 = "1h77wfs3plgcsysb13jk526gnbcw2j0xbbrvc68mz6nk1mj6scgw";
|
||||
|
||||
postInstall = ''
|
||||
install -Dm644 -t $out/share/man/man1 ${src}/man/textql.1
|
||||
'';
|
||||
|
||||
# needed for tests
|
||||
nativeBuildInputs = [ sqlite ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue