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