Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / sqlint / default.nix
blob960792d648b3aa2d3b9cfa925a1011a6ef2ba5d7
1 { lib, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "sqlint";
5   gemdir = ./.;
7   exes = [ "sqlint" ];
9   passthru.updateScript = bundlerUpdateScript "sqlint";
11   meta = with lib; {
12     description = "Simple SQL linter";
13     homepage    = "https://github.com/purcell/sqlint";
14     license     = licenses.mit;
15     maintainers = with maintainers; [ ariutta nicknovitski purcell ];
16     platforms   = platforms.unix;
17   };