1 { lib, buildGoModule, fetchFromGitHub }:
7 src = fetchFromGitHub {
11 hash = "sha256-VgPc78xhafRlEUfNMKiYDyWqZVtYDkqwVDQ3BG9r70w=";
16 vendorHash = "sha256-YmjQj116egYhcpJ9Vps1d30bfCY6pAu/mA9MEzXVJb8=";
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 ];