Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
452 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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;
};
}