summary refs log tree commit diff
path: root/pkgs/development/tools/sqlint/default.nix
blob: 960792d648b3aa2d3b9cfa925a1011a6ef2ba5d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerApp, bundlerUpdateScript }:

bundlerApp {
  pname = "sqlint";
  gemdir = ./.;

  exes = [ "sqlint" ];

  passthru.updateScript = bundlerUpdateScript "sqlint";

  meta = with lib; {
    description = "Simple SQL linter";
    homepage    = "https://github.com/purcell/sqlint";
    license     = licenses.mit;
    maintainers = with maintainers; [ ariutta nicknovitski purcell ];
    platforms   = platforms.unix;
  };
}