nixpkgs/pkgs/development/tools/sqlint/default.nix

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

19 lines
432 B
Nix
Raw Permalink Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2018-06-12 21:00:23 +00:00
bundlerApp {
2018-06-12 21:00:23 +00:00
pname = "sqlint";
gemdir = ./.;
exes = [ "sqlint" ];
passthru.updateScript = bundlerUpdateScript "sqlint";
2018-06-12 21:00:23 +00:00
meta = with lib; {
description = "Simple SQL linter";
homepage = "https://github.com/purcell/sqlint";
2018-06-12 21:00:23 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ariutta nicknovitski purcell ];
platforms = platforms.unix;
2018-06-12 21:00:23 +00:00
};
}