Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / sqldef / default.nix
blob92c1c0037f2b3f52ca4c4e3d3aae5b29530b29c7
1 { lib, buildGoModule, fetchFromGitHub, libpg_query, xxHash, postgresql }:
3 buildGoModule rec {
4   pname = "sqldef";
5   version = "0.16.10";
7   src = fetchFromGitHub {
8     owner = "k0kubun";
9     repo = "sqldef";
10     rev = "v${version}";
11     hash = "sha256-NwSQLpqgOuVBH+EYjSch3h0BMJZPK3/FcKO4iUnNt+E=";
12   };
14   proxyVendor = true;
16   vendorHash = "sha256-2MwibiWT9rrbNVva61wR1OPrG+fZkxTDznC2pdm3CKE=";
18   ldflags = [ "-s" "-w" "-X main.version=${version}" ];
20   # The test requires a running database
21   doCheck = false;
23   meta = with lib; {
24     description = "Idempotent SQL schema management tool";
25     license = with licenses; [ mit /* for everything except parser */  asl20 /* for parser */ ];
26     homepage = "https://github.com/k0kubun/sqldef";
27     changelog = "https://github.com/k0kubun/sqldef/blob/v${version}/CHANGELOG.md";
28     maintainers = with maintainers; [ kgtkr ];
29   };