bba55970ba
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
18 lines
432 B
Nix
18 lines
432 B
Nix
{ 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;
|
|
};
|
|
}
|