b426c85ce2
This requires some small changes in the stdenv, then working around the weird choice LLVM made to hardcode @rpath in its install name, and then lets us remove a ton of annoying workaround hacks in many of our Go packages. With any luck this will mean less hackery going forward.
26 lines
614 B
Nix
26 lines
614 B
Nix
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "textql-${version}";
|
|
version = "2.0.3";
|
|
rev = "${version}";
|
|
|
|
goPackagePath = "github.com/dinedal/textql";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "dinedal";
|
|
repo = "textql";
|
|
sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
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 ];
|
|
};
|
|
}
|