2021-03-18 20:59:09 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2018-06-12 21:00:23 +00:00
|
|
|
|
2021-03-18 20:59:09 +00:00
|
|
|
bundlerApp {
|
2018-06-12 21:00:23 +00:00
|
|
|
pname = "sqlint";
|
|
|
|
gemdir = ./.;
|
|
|
|
|
|
|
|
exes = [ "sqlint" ];
|
|
|
|
|
2019-07-22 12:02:47 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "sqlint";
|
|
|
|
|
2018-06-12 21:00:23 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple SQL linter";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/purcell/sqlint";
|
2018-06-12 21:00:23 +00:00
|
|
|
license = licenses.mit;
|
2021-03-18 20:59:09 +00:00
|
|
|
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
|
2021-04-02 04:50:24 +00:00
|
|
|
platforms = platforms.unix;
|
2018-06-12 21:00:23 +00:00
|
|
|
};
|
|
|
|
}
|