We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 4acb425 commit 1acf671Copy full SHA for 1acf671
pkgs/development/tools/textql/default.nix
@@ -4,7 +4,7 @@ buildGoPackage rec {
4
name = "textql-${version}";
5
version = "2.0.3";
6
rev = "${version}";
7
-
+
8
goPackagePath = "github.com/dinedal/textql";
9
10
src = fetchFromGitHub {
@@ -16,6 +16,10 @@ buildGoPackage rec {
16
17
goDeps = ./deps.nix;
18
19
+ preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
20
+ install_name_tool -delete_rpath $out/lib $bin/bin/textql
21
+ '';
22
23
meta = with stdenv.lib; {
24
description = "Execute SQL against structured text like CSV or TSV";
25
homepage = https://github.com/dinedal/textql;
0 commit comments