1{ lib, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "sqlint";
5 gemdir = ./.;
6
7 exes = [ "sqlint" ];
8
9 passthru.updateScript = bundlerUpdateScript "sqlint";
10
11 meta = with lib; {
12 description = "Simple SQL linter";
13 homepage = "https://github.com/purcell/sqlint";
14 license = licenses.mit;
15 maintainers = with maintainers; [ ariutta nicknovitski purcell ];
16 platforms = platforms.unix;
17 };
18}