1 { lib, buildGoModule, fetchFromGitHub, libpg_query, xxHash, postgresql }:
7 src = fetchFromGitHub {
11 hash = "sha256-NwSQLpqgOuVBH+EYjSch3h0BMJZPK3/FcKO4iUnNt+E=";
16 vendorHash = "sha256-2MwibiWT9rrbNVva61wR1OPrG+fZkxTDznC2pdm3CKE=";
18 ldflags = [ "-s" "-w" "-X main.version=${version}" ];
20 # The test requires a running database
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 ];