2021-04-05 15:23:46 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
bundlerApp {
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
2021-04-05 15:23:46 +00:00
|
|
|
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
|
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|